2017-12-25 02:12:26 +08:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<table class="table">
|
|
|
|
<tr>
|
|
|
|
<td>Name</td>
|
|
|
|
<td>
|
|
|
|
<div class="input-group form-group-no-border{{ $errors->has('name') ? ' has-danger' : '' }}">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::text('name', null, ['class' => 'form-control']) }}
|
2017-08-03 02:13:08 +08:00
|
|
|
</div>
|
2017-12-25 02:12:26 +08:00
|
|
|
@if ($errors->has('name'))
|
|
|
|
<p class="text-danger">{{ $errors->first('name') }}</p>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
</tr>
|
2017-08-03 02:13:08 +08:00
|
|
|
|
2017-12-25 02:12:26 +08:00
|
|
|
<tr>
|
|
|
|
<td>Email</td>
|
|
|
|
<td>
|
|
|
|
<div class="input-group form-group-no-border{{ $errors->has('email') ? ' has-danger' : '' }}">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::text('email', null, ['class' => 'form-control']) }}
|
2017-12-25 02:12:26 +08:00
|
|
|
</div>
|
|
|
|
@if ($errors->has('email'))
|
|
|
|
<p class="text-danger">{{ $errors->first('email') }}</p>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
<td>Airline</td>
|
|
|
|
<td>
|
|
|
|
<div class="input-group form-group-no-border{{ $errors->has('airline') ? ' has-danger' : '' }}">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::select('airline_id', $airlines, null , ['class' => 'form-control select2']) }}
|
2017-12-25 02:12:26 +08:00
|
|
|
</div>
|
|
|
|
@if ($errors->has('airline_id'))
|
|
|
|
<p class="text-danger">{{ $errors->first('airline_id') }}</p>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
2018-03-01 05:37:24 +08:00
|
|
|
<tr>
|
|
|
|
<td>Home Airport</td>
|
|
|
|
<td>
|
|
|
|
<div class="input-group form-group-no-border{{ $errors->has('home_airport_id') ? ' has-danger' : '' }}">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::select('home_airport_id', $airports, null , ['class' => 'form-control select2']) }}
|
2018-03-01 05:37:24 +08:00
|
|
|
</div>
|
|
|
|
@if ($errors->has('home_airport_id'))
|
|
|
|
<p class="text-danger">{{ $errors->first('home_airport_id') }}</p>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
2018-01-10 09:08:16 +08:00
|
|
|
<tr>
|
|
|
|
<td>Country</td>
|
|
|
|
<td>
|
|
|
|
<div class="input-group form-group-no-border{{ $errors->has('country') ? ' has-danger' : '' }}">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::select('country', $countries, null, ['class' => 'form-control select2' ]) }}
|
2018-01-10 09:08:16 +08:00
|
|
|
</div>
|
|
|
|
@if ($errors->has('country'))
|
|
|
|
<p class="text-danger">{{ $errors->first('country') }}</p>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
2017-12-25 02:12:26 +08:00
|
|
|
<tr>
|
|
|
|
<td>Timezone</td>
|
|
|
|
<td>
|
|
|
|
<div class="input-group form-group-no-border{{ $errors->has('timezone') ? ' has-danger' : '' }}">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::select('timezone', $timezones, null, ['class' => 'form-control select2' ]) }}
|
2017-12-25 02:12:26 +08:00
|
|
|
</div>
|
|
|
|
@if ($errors->has('timezone'))
|
|
|
|
<p class="text-danger">{{ $errors->first('timezone') }}</p>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
<td>Change Password</td>
|
|
|
|
<td>
|
|
|
|
<div class="input-group form-group-no-border{{ $errors->has('password') ? ' has-danger' : '' }}">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::password('password', ['class' => 'form-control']) }}
|
2017-12-25 02:12:26 +08:00
|
|
|
</div>
|
|
|
|
@if ($errors->has('password'))
|
|
|
|
<p class="text-danger">{{ $errors->first('password') }}</p>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
<p>Confirm Password:</p>
|
|
|
|
<div class="input-group form-group-no-border{{ $errors->has('password_confirmation') ? ' has-danger' : '' }}">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::password('password_confirmation', ['class' => 'form-control']) }}
|
2017-12-25 02:12:26 +08:00
|
|
|
</div>
|
|
|
|
@if ($errors->has('password_confirmation'))
|
|
|
|
<p class="text-danger">{{ $errors->first('password_confirmation') }}</p>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<div style="width: 100%; text-align: right; padding-top: 20px;">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::submit('Update Profile', ['class' => 'btn btn-primary']) }}
|
2017-08-03 02:13:08 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|