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

10 lines
538 B
PHP

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