@if ($attributes->has('as'))
{{ $slot }}
@else
@props([
'method' => 'POST',
])
@php
$method = strtoupper($method);
@endphp
@unless(in_array($method, ['HEAD', 'GET', 'OPTIONS']))
@csrf
@endunless
@if (! in_array($method, ['GET', 'POST']))
@method($method)
@endif
{{ $slot }}
@endif