@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.location.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('location_name'))
{{ $errors->first('location_name') }}
@endif {{ trans('cruds.location.fields.location_name_helper') }}
@foreach(App\Models\Location::DISPLAY_STATUS_RADIO as $key => $label)
display_status) === (string) $key ? 'checked' : '' }} required>
@endforeach @if($errors->has('display_status'))
{{ $errors->first('display_status') }}
@endif {{ trans('cruds.location.fields.display_status_helper') }}
@endsection