@props([ 'style' => 'horizontal', 'route' => null, 'method' => 'POST', 'model' => null, 'handler' => null, 'enctype' => false, ]) @php $formAttributes = ['class' => 'form-' . e($style)]; if ($route) { $formAttributes['action'] = e($route); } $formAttributes['method'] = $method === 'GET' ? 'GET' : 'POST'; if ($handler) { $formAttributes['onsubmit'] = 'return ' . e($handler); } if ($enctype) { $formAttributes['enctype'] = 'multipart/form-data'; } @endphp