Name
{!! Form::text('name', null, ['class' => 'form-control']) !!}
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
Email
{!! Form::text('email', null, ['class' => 'form-control']) !!}
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
Airline
{!! Form::select('airline_id', $airlines, null , ['class' => 'form-control select2']) !!}
@if ($errors->has('airline_id'))

{{ $errors->first('airline_id') }}

@endif
Country
{!! Form::select('country', $countries, null, ['class' => 'form-control select2' ]); !!}
@if ($errors->has('country'))

{{ $errors->first('country') }}

@endif
Timezone
{!! Form::select('timezone', $timezones, null, ['class' => 'form-control select2' ]); !!}
@if ($errors->has('timezone'))

{{ $errors->first('timezone') }}

@endif
Change Password
{!! Form::password('password', ['class' => 'form-control']) !!}
@if ($errors->has('password'))

{{ $errors->first('password') }}

@endif

Confirm Password:

{!! Form::password('password_confirmation', ['class' => 'form-control']) !!}
@if ($errors->has('password_confirmation'))

{{ $errors->first('password_confirmation') }}

@endif
{!! Form::submit('Update Profile', ['class' => 'btn btn-primary']) !!}