{{trans('customers.register')}}
{{ Form::open(array('url' => route('crm.register'),'method' => 'post','files'=>true)) }}
{{ Form::close() }}
{{ Form::label( 'name', trans('customers.name'),['class' => 'col-12 control-label']) }}
{{ Form::text('name', null, ['class' => 'form-control box-size', 'placeholder' => trans('customers.name').'*','required'=>'required']) }} @if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ Form::label( 'phone', trans('customers.phone'),['class' => 'col-12 control-label']) }}
{{ Form::text('phone',null, ['class' => 'form-control box-size', 'placeholder' => trans('customers.phone').'*','required'=>'required']) }} @if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
{{ Form::label( 'email', trans('customers.email'),['class' => 'col-12 control-label']) }}
{{ Form::email('email', null, ['class' => 'form-control box-size', 'placeholder' => trans('customers.email').'*','required'=>'required']) }} @if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{ Form::label( 'company', trans('customers.company'),['class' => 'col-12 control-label']) }}
{{ Form::text('company', null, ['class' => 'form-control box-size', 'placeholder' => trans('customers.company')]) }} @if ($errors->has('company'))
{{ $errors->first('company') }}
@endif
{{ Form::label( 'address', trans('customers.address'),['class' => 'col-12 control-label']) }}
{{ Form::text('address', null, ['class' => 'form-control box-size', 'placeholder' => trans('customers.address').'*','required'=>'required']) }} @if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
{{ Form::label( 'city', trans('customers.city'),['class' => 'col-12 control-label']) }}
{{ Form::text('city',null, ['class' => 'form-control box-size', 'placeholder' => trans('customers.city').'*','required'=>'required']) }} @if ($errors->has('city'))
{{ $errors->first('city') }}
@endif
{{ Form::label( 'region', trans('customers.region'),['class' => 'col-12 control-label']) }}
{{ Form::text('region', null, ['class' => 'form-control box-size', 'placeholder' => trans('customers.region').'*','required'=>'required']) }}@if ($errors->has('region'))
{{ $errors->first('region') }}
@endif
{{ Form::label( 'country', trans('customers.country'),['class' => 'col-12 control-label']) }}
{{ Form::text('country',null, ['class' => 'form-control box-size', 'placeholder' => trans('customers.country').'*','required'=>'required']) }}@if ($errors->has('country'))
{{ $errors->first('country') }}
@endif
{{ Form::label( 'postbox', trans('customers.postbox'),['class' => 'col-12 control-label']) }}
{{ Form::text('postbox', null, ['class' => 'form-control box-size', 'placeholder' => trans('customers.postbox')]) }}
{{ Form::label( 'taxid', trans('customers.taxid'),['class' => 'col-12 control-label']) }}
{{ Form::text('taxid', null, ['class' => 'form-control box-size', 'placeholder' => trans('customers.taxid')]) }}
{{ Form::label( 'password', trans('customers.password'),['class' => 'col-12 control-label']) }}
{{ Form::password('password', ['class' => 'form-control box-size', 'placeholder' => trans('customers.password'),'required'=>'']) }}@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
{{ Form::label('password_confirmation', trans('customers.confirm_password'),['class' => 'col-12 control-label']) }}
{{ Form::password('password_confirmation', ['class' => 'form-control box-size', 'placeholder' => trans('customers.confirm_password'),'required'=>'']) }}
@if(config('standard.type'))
{{ Form::label( 'reg_id', trans('customers.reg_id'),['class' => 'col-12 control-label']) }}Ask your business provider to get the registration id, it is 10 digit alphanumeric ID starts with CR
@endif
{{ Form::text('reg_id',null, ['class' => 'form-control box-size', 'placeholder' => trans('customers.reg_id').' CR']) }}
{{ Form::submit(trans('customers.register'), ['class' => 'btn btn-primary btn-md']) }}