Files
bappli-jurassic-land/resources/views/paddock/create.blade.php
Benjamin Sigonneau cf6d0ab467 List all paddocks, create new paddock.
All paddocks new paddocks are closed.
2020-04-17 09:08:22 +02:00

18 lines
372 B
PHP

@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