@if(Session::has('errors'))
Alert!
@if($errors->first('name'))
{!! $errors->first('name', ':message') !!}
@endif
@if($errors->first('grace_period'))
{!! $errors->first('grace_period', ':message') !!}
@endif
@if($errors->first('status'))
{!! $errors->first('status', ':message') !!}
@endif
@endif
{!! Form::label('name',Lang::get('lang.name')) !!} *
{!! Form::text('name',null,['class' => 'form-control']) !!}
{!! Form::label('grace_period',Lang::get('lang.grace_period')) !!}
{!! Form::select('grace_period',['6 Hours'=>'6 Hours', '12 Hours'=>'12 Hours', '18 Hours'=>'18 Hours', '24 Hours'=>'24 Hours', '36 Hours'=>'36 Hours', '48 Hours'=>'48 Hours'],null,['class' => 'form-control']) !!}
{!! Form::label('status',Lang::get('lang.status')) !!}
{!! Form::radio('status','1',true) !!} {{Lang::get('lang.active')}}
{!! Form::radio('status','0') !!} {{Lang::get('lang.inactive')}}
{!! Form::label('admin_note',Lang::get('lang.admin_notes')) !!}
{!! Form::textarea('admin_note',null,['class' => 'form-control','size' => '30x5']) !!}