List all paddocks, create new paddock.

All paddocks new paddocks are closed.
This commit is contained in:
2020-04-17 09:08:22 +02:00
parent dcd75c3358
commit cf6d0ab467
7 changed files with 217 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
@extends('paddock.layout')
@section('content')
<h2>Nouvel enclos</h2>
<br>
<form action="{{ route('paddocks.store') }}" method="POST">
{{ csrf_field() }}
<strong>Nom</strong>
<input type="text" name="name" placeholder="Nom de l'enclos">
<span class="text-danger">{{ $errors->first('name') }}</span>
<button type="submit">Créer</button>
</form>
@endsection