2018-10-08 22:31:58 +02:00

21 lines
599 B
PHP
Executable File

@extends('layouts.form')
@section('card')
@component('components.card')
@slot('title')
@lang('Ajouter un karting')
@endslot
<form method="POST" action="{{ url('kart') }}">
{{ csrf_field() }}
@include('partials.form-group', [
'title' => __('Nom'),
'type' => 'text',
'name' => 'name',
'required' => true,
])
@component('components.button')
@lang('Envoyer')
@endcomponent
</form>
@endcomponent
@endsection