blue-twilight/resources/views/themes/base/partials/admin_storages_filesystem_o...

10 lines
543 B
PHP

<div class="form-group{{ $errors->has('location') ? ' has-danger' : '' }}">
<label class="form-control-label" for="storage-location">@lang('forms.storage_location_label')</label>
<input type="text" class="form-control" id="storage-location" name="location" value="{{ old('location', isset($filesystem_default_location) ? $filesystem_default_location : '') }}">
@if ($errors->has('location'))
<div class="form-control-feedback">
<strong>{{ $errors->first('location') }}</strong>
</div>
@endif
</div>