41 lines
958 B
PHP
41 lines
958 B
PHP
@extends('paddock.layout')
|
|
|
|
@section('content')
|
|
<h2>Édition d'un enclos</h2>
|
|
<br>
|
|
|
|
<form action="{{ route('paddocks.update', $paddock->id) }}" method="POST">
|
|
{{ csrf_field() }}
|
|
@method('PATCH')
|
|
|
|
<strong>Nom</strong>
|
|
<input type="text"
|
|
name="name"
|
|
value="{{ $paddock->name }}">
|
|
<span class="text-danger">{{ $errors->first('name') }}</span>
|
|
|
|
<!-- Paddock status -->
|
|
<fielset>
|
|
<strong>Statut</strong>
|
|
|
|
<input type="radio"
|
|
name="state"
|
|
value="opened"
|
|
id="paddock-state-opened"
|
|
{{ $paddock->isClosed ? '' : 'checked' }}>
|
|
<label for="paddock-state-opened">Ouvert</label>
|
|
|
|
<input type="radio"
|
|
name="state"
|
|
value="closed"
|
|
id="paddock-state-closed"
|
|
{{ $paddock->isClosed ? 'checked' : '' }}>
|
|
<label for="paddock-state-closed">Fermé</label>
|
|
</fieldset>
|
|
|
|
|
|
<button type="submit">Mettre à jour</button>
|
|
</form>
|
|
|
|
@endsection
|