@if(Session::has('message'))
@endif
{!! Form::open(['url' => '/admin/order-mail-notification/create', 'files' => true ]) !!}
{!! Form::label('Title') !!}
{!! Form::text('mail_notification_title', null, ['class' => 'form-control', 'placeholder' => 'Enter notification title']) !!}
@if ($errors->has('mail_notification_title')){!! $errors->first('mail_notification_title') !!}@endif
{!! Form::label('URL') !!}
{!! Form::text('mail_notification_url', null, ['class' => 'form-control', 'placeholder' => 'Enter url']) !!}
@if ($errors->has('mail_notification_url')){!! $errors->first('mail_notification_url') !!}@endif
{!! Form::label('From') !!}
{!! Form::date('from', \Carbon\Carbon::now(), ['class' => 'form-control']) !!}
{!! Form::label('To') !!}
{!! Form::date('to', \Carbon\Carbon::now(), ['class' => 'form-control']) !!}
{!! Form::label('Status') !!}
{!! Form::select('is_exist', [1 => 'Active', 0 => 'Inactive'], null, ['class' => 'form-control']) !!}
{!! Form::close() !!}