@props(['name', 'title' => null, 'maxWidth' => 'lg']) @php $maxWidthClasses = [ 'sm' => 'sm:max-w-sm', 'md' => 'sm:max-w-md', 'lg' => 'sm:max-w-lg', 'xl' => 'sm:max-w-xl', '2xl' => 'sm:max-w-2xl', ]; $maxWidthClass = $maxWidthClasses[$maxWidth] ?? $maxWidthClasses['lg']; @endphp
@if($title)

{{ $title }}

@endif
{{ $slot }}