@if(Session::has('success1'))
Alert! Success.
{{Session::get('success1')}}
@endif
@if(Session::has('fails1'))
Alert! Failed.
{{Session::get('fails1')}}
@endif
{!! Form::label('firstname',Lang::get('lang.firstname')) !!}
{!! $errors->first('firstname', ':message') !!}
{!! Form::text('firstname',null,['class' => 'form-control']) !!}
{!! Form::label('lastname',Lang::get('lang.lastname')) !!}
{!! $errors->first('lastname', ':message') !!}
{!! Form::text('lastname',null,['class' => 'form-control']) !!}
{!! Form::label('timezone',Lang::get('lang.timezone')) !!}
{!!Form::select('timezone',$time->lists('location','name') ,null,['class' => 'form-control select']) !!}
{!! Form::label('company',Lang::get('lang.company')) !!}
{!! $errors->first('company', ':message') !!}
{!! Form::text('company',null,['class' => 'form-control']) !!}
{!! Form::label('ext',Lang::get('lang.ext')) !!}
{!! $errors->first('ext', ':message') !!}
{!! Form::text('ext',null,['class' => 'form-control']) !!}
{!! Form::label('phone_number',Lang::get('lang.phone')) !!}
{!! $errors->first('phone_number', ':message') !!}
{!! Form::text('phone_number',null,['class' => 'form-control']) !!}
{!! Form::label('mobile',Lang::get('lang.mobile')) !!}
{!! $errors->first('mobile', ':message') !!}
{!! Form::text('mobile',null,['class' => 'form-control']) !!}
{!! Form::token() !!}
{!! Form::close() !!}