@extends('layouts.frontend') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.geofence.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.geofence.fields.name_helper') }}
@foreach(App\Models\Geofence::STATUS_RADIO as $key => $label)
status) === (string) $key ? 'checked' : '' }}>
@endforeach @if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.geofence.fields.status_helper') }}
@endsection