2017-10-26 03:43:28 -07:00
|
|
|
<!-- Location -->
|
2017-11-21 15:58:31 -08:00
|
|
|
<div id="{{ $fieldname }}" class="form-group{{ $errors->has($fieldname) ? ' has-error' : '' }}"{!! (isset($style)) ? ' style="'.e($style).'"' : '' !!}>
|
2017-10-26 21:51:53 -07:00
|
|
|
|
2017-10-26 03:43:28 -07:00
|
|
|
{{ Form::label($fieldname, $translated_name, array('class' => 'col-md-3 control-label')) }}
|
2017-10-26 21:51:53 -07:00
|
|
|
<div class="col-md-7{{ ((isset($required) && ($required =='true'))) ? ' required' : '' }}">
|
|
|
|
<select class="js-data-ajax" data-endpoint="locations" name="{{ $fieldname }}" style="width: 100%" id="{{ $fieldname }}_location_select">
|
2017-10-28 09:21:39 -07:00
|
|
|
@if ($location_id = Input::old($fieldname, (isset($item)) ? $item->{$fieldname} : ''))
|
2017-10-28 08:38:19 -07:00
|
|
|
<option value="{{ $location_id }}" selected="selected">
|
2017-11-06 10:55:20 -08:00
|
|
|
{{ (\App\Models\Location::find($location_id)) ? \App\Models\Location::find($location_id)->name : '' }}
|
2017-10-28 08:38:19 -07:00
|
|
|
</option>
|
|
|
|
@else
|
|
|
|
<option value="">{{ trans('general.select_location') }}</option>
|
|
|
|
@endif
|
2017-10-26 03:43:28 -07:00
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-1 col-sm-1 text-left">
|
|
|
|
@can('create', \App\Models\Location::class)
|
2017-12-01 14:37:11 -08:00
|
|
|
@if ((!isset($hide_new)) || ($hide_new!='true'))
|
2017-10-26 21:51:53 -07:00
|
|
|
<a href='{{ route('modal.location') }}' data-toggle="modal" data-target="#createModal" data-dependency="location" data-select='{{ $fieldname }}_location_select' class="btn btn-sm btn-default">New</a>
|
2017-12-01 14:37:11 -08:00
|
|
|
@endif
|
2017-10-26 03:43:28 -07:00
|
|
|
@endcan
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{!! $errors->first($fieldname, '<div class="col-md-8 col-md-offset-3"><span class="alert-msg"><i class="fa fa-times"></i> :message</span></div>') !!}
|
|
|
|
|
2017-10-28 07:41:13 -07:00
|
|
|
@if (isset($help_text))
|
2017-10-28 07:29:14 -07:00
|
|
|
<div class="col-md-7 col-sm-11 col-md-offset-3">
|
|
|
|
<p class="help-block">{{ $help_text }}</p>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
|
2017-10-26 03:43:28 -07:00
|
|
|
</div>
|
2017-10-26 21:51:53 -07:00
|
|
|
|
|
|
|
|
|
|
|
|