{{ Form::label('location_id', $translated_name, array('class' => 'col-md-3 control-label')) }}
@if ($location_id = old('location_id', (isset($user)) ? $user->location_id : ''))
{{ (\App\Models\Location::find($location_id)) ? \App\Models\Location::find($location_id)->name : '' }}
@else
{{ trans('general.select_location') }}
@endif
{!! $errors->first('location_id', '
:message
') !!}