List all paddocks, create new paddock.
All paddocks new paddocks are closed.
This commit is contained in:
17
resources/views/paddock/create.blade.php
Normal file
17
resources/views/paddock/create.blade.php
Normal 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
|
||||
Reference in New Issue
Block a user