@extends('layouts.master') @section('page_title') @if(isset($page_title)) {{ $page_title }} @endif @endsection @section('content')
New Daily Quote @include('commons.notifications')
{{-- start of content --}}

{!! Form::open(['url' => 'dailyquotes', 'id' => 'dailyQuoteCreateForm', 'class' => 'form-horizontal form-label-left']) !!}
{!! Form::textarea('quote', old('quote'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter quote', 'id' => 'quoteIDD', 'required' => 'true']) !!} {!! $errors->first('quote', '

:message

') !!}
{!! Form::select('status', $status ,old('status'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Select Status ' , 'id' => 'status', 'required' => 'true']) !!} {!! $errors->first('status', '

:message

') !!}
{!! Form::text('author', old('author'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter author name' , 'id' => 'author']) !!} {!! $errors->first('author', '

:message

') !!}
{!! Form::text('quote_date', old('quote_date'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Select date' , 'id' => 'quoteDate']) !!} {!! $errors->first('quote_date', '

:message

') !!}
 
{!! Form::close() !!}
{{-- end of x_content --}}
{{-- end of x_panel --}}
@endsection @section('javascript') @endsection