{!! Form::label('location_id',trans('messages.location'),[])!!}
{!! Form::select('location_id', $locations,isset($user_location) ? $user_location->location_id : '',['class'=>'form-control input-xlarge show-tick','title' => trans('messages.select_one')])!!}
{!! Form::label('description',trans('messages.description'),[])!!}
{!! Form::textarea('description',isset($user_location) ? $user_location->description : '',['size' => '30x3', 'class' => 'form-control', 'placeholder' => trans('messages.description'),"data-show-counter" => 1,"data-limit" => config('config.textarea_limit'),'data-autoresize' => 1])!!}
{{ getCustomFields('user-location-form',isset($custom_user_location_field_values) ? $custom_user_location_field_values : []) }}
{!! Form::submit(trans('messages.save'),['class' => 'btn btn-primary pull-right']) !!}