{{ Form::open(['route' => 'biller.customers.store', 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'post','files' => true, 'id' => 'create-customer']) }}
{{-- Including Form blade file --}}
@include("focus.customers.form")
@if(@$input['rel_type'])
{{ Form::hidden('rel_id', @$input['rel_id']) }}
{{ Form::hidden('main', 0) }}
@endif
{{ Form::close() }}
{{ link_to_route('biller.customers.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-md']) }}
{{ Form::submit(trans('buttons.general.crud.create'), ['class' => 'btn btn-primary btn-md']) }}