|
@props([
|
|
'method' => 'POST',
|
|
'form_classes' => 'px-4 sm:px-8'
|
|
])
|
|
|
|
<form method="{{ ($method === 'GET' ? 'GET':'POST') }}" {{ $attributes->merge(['class' => $form_classes]) }}>
|
|
@csrf
|
|
@if(! in_array($method, ['POST','GET']))
|
|
@method($method)
|
|
@endif
|
|
{{ $slot }}
|
|
</form>
|
|
|