@extends ('backend.layouts.app') @section ('title', 'Create Quote') @section('page-header')

Quotes Management Create Quote

@endsection @section('content') {{ Form::open(['route' => 'admin.modules.quotes.store', 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'post', 'id' => 'create-quote']) }}

Create quote

@include('backend.modules.includes.partials.quotes-header-buttons')
{{ Form::label('Quote', 'Quote', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('quote', '', ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter quote']) }}
{{ Form::label('Author', 'Author', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('author', '', ['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.create'), ['class' => 'btn btn-success btn-xs']) }}
{{ Form::close() }} @endsection