@extends ('backend.layouts.app') @section ('title', 'quotes Update') @section('page-header')

Quotes Management Quotes Edit

@endsection @section('content') {{ Form::model($quote, ['route' => ['admin.modules.quotes.update', $quote], 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'PATCH', 'id' => 'edit-partner']) }}

Quotes edit

@include('backend.modules.includes.partials.quotes-header-buttons')
{{ Form::label('Quote', 'Quote', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('quote', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter quote']) }}
{{ Form::label('Author', 'Author', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('author', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter author']) }}
{{ Form::label('Active', 'Active', ['class' => 'col-lg-2 control-label']) }}
{{ link_to_route('admin.modules.quotes.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-xs']) }}
{{ Form::submit(trans('buttons.general.crud.update'), ['class' => 'btn btn-success btn-xs']) }}
{{ Form::close() }} @endsection