{{ trans('customers.add_new') }}

{{ Form::open([ 'method' => 'post', 'action' => 'sale.new_customerQuotation', 'id' => 'form-add-customer']) }}
{{ Form::label('first_name', trans('customers.first_name')) }} {{ Form::text('first_name', null, ['class' => 'form-control', 'placeholder' => trans('customers.first_name')]) }} {{ $errors->first('first_name') }}
{{ Form::label('last_name', trans('customers.last_name')) }} {{ Form::text('last_name', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => trans('customers.last_name')]) }} {{ $errors->first('last_name') }}
{{ Form::label('tel', trans('customers.tel')) }} {{ Form::text('tel', null, ['class' => 'form-control', 'placeholder' => trans('customers.tel')]) }} {{ $errors->first('tel') }}
{{ Form::label('address', trans('customers.address')) }} {{ Form::textarea('address', null, ['class' => 'form-control', 'rows' => '3', 'placeholder' => trans('customers.address')]) }} {{ $errors->first('address') }}
{{ Form::close() }}