{!! Form::label('name', 'Name:') !!}
{!! Form::text('name', null,['class'=>'form-control', 'required', 'placeholder'=>'Enter banner name ...']) !!}
{!! Form::label('area_id', 'Banner Area:') !!}
{!! Form::select('area_id', ['' => 'Please Select ...'] + \App\Models\Banner::$areas, null, ['class'=>'form-control']) !!}
{!! Form::label('link', 'Link URL:') !!}
{!! Form::text('link', null,['class'=>'form-control', 'placeholder'=>'Enter link URL ...']) !!}
{!! Form::label('banner_text', 'Banner Text:') !!}
{!! Form::textarea('banner_text', null,['class'=>'form-control ckeditor', 'placeholder'=>'Content ...', 'rows'=>'3']) !!}
{!! Form::label('Start Date', 'Start Date:') !!}
{!! Form::date('date_start', null,['class'=>'form-control', 'placeholder'=>'Start date ...']) !!}
{!! Form::label('date_start', 'End Date:') !!}
{!! Form::date('date_end', null,['class'=>'form-control', 'placeholder'=>'End date ...']) !!}
{!! Form::label('', 'Status:') !!}