@if (count($errors) > 0)
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{!! Form::open(['route' => 'customers.store','method'=>'post']) !!}
{!! Form::label('first_name', __('fleet.firstname'), ['class' => 'form-label']) !!}
{!! Form::text('first_name', null,['class' => 'form-control','required']) !!}
{!! Form::label('last_name', __('fleet.lastname'), ['class' => 'form-label']) !!}
{!! Form::text('last_name', null,['class' => 'form-control','required']) !!}
{!! Form::submit(__('fleet.add_new'), ['class' => 'btn btn-success']) !!}
{!! Form::close() !!}