@extends('backend.layout.main') @section('content')
{{trans('file.Add Biller')}}
{{trans('file.The field labels marked with * are required input fields')}}.
{!! Form::open(['route' => 'biller.store', 'method' => 'post', 'files' => true]) !!}
{{trans('file.name')}} *
{{trans('file.Image')}}
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif
{{trans('file.Company Name')}} *
@if($errors->has('company_name'))
{{ $errors->first('company_name') }}
@endif
{{trans('file.VAT Number')}}
{{trans('file.Email')}} *
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{trans('file.Phone Number')}} *
{{trans('file.Address')}} *
{{trans('file.City')}} *
{{trans('file.State')}}
{{trans('file.Postal Code')}}
{{trans('file.Country')}}
{!! Form::close() !!}
@endsection @push('scripts') @endpush