@if(Session::has('success'))
Success
{{Session::get('success')}}
@endif
@if(Session::has('fails'))
Fail!
{{Session::get('fails')}}
@endif
@if(Session::has('errors'))
{!! Lang::get('lang.alert') !!}!
@if($errors->first('first_name'))
{!! $errors->first('first_name', ':message') !!}
@endif
@if($errors->first('mobile'))
{!! $errors->first('mobile', ':message') !!}
@endif
@endif
{!! Form::label('first_name',Lang::get('lang.first_name')) !!} *
{!! Form::text('first_name',null,['class' => 'form-control']) !!}
{!! Form::label('last_name',Lang::get('lang.last_name')) !!}
{!! Form::text('last_name',null,['class' => 'form-control']) !!}
{!! Form::label('company',Lang::get('lang.company')) !!}
{!! Form::text('company',null,['class' => 'form-control']) !!}
{!! Form::label('country_code',Lang::get('lang.country-code')) !!}
{!! Form::text('country_code',null,['class' => 'form-control', 'placeholder' => $phonecode, 'title' => Lang::get('lang.enter-country-phone-code'), 'id' => 'code']) !!}
{!! Form::label('ext',Lang::get('lang.ext')) !!}
{!! Form::text('ext',null,['class' => 'form-control']) !!}
{!! Form::label('phone_number',Lang::get('lang.phone')) !!}
{!! Form::text('phone_number',null,['class' => 'form-control']) !!}
{!! Form::label('mobile',Lang::get('lang.mobile_number')) !!}
{!! Form::text('mobile',null,['class' => 'form-control', 'id' => 'mobile']) !!}
{!! Form::label('agent_sign',Lang::get('lang.agent_sign')) !!}
{!! Form::textarea('agent_sign',null,['class' => 'form-control']) !!}
{!! Form::token() !!}
{!! Form::close() !!}