{!! html()->label('الكلمة / النمط (Regex):', 'pattern') !!} {!! html()->text('pattern')->class('form-control')->required()->placeholder('أدخل الكلمة أو النمط (Regex)') !!}
{!! html()->label('النوع:', 'type') !!} {!! html()->select('type', ['exact' => 'تطابق كامل (كلمة)', 'regex' => 'نمط معقد (Regex)'])->class('form-control custom-select')->required() !!}
{!! html()->hidden('is_active', 0) !!} {!! html()->checkbox('is_active', 1, 1)->class('form-check-input')->id('is_active') !!} {!! html()->label('مفعل (Active)', 'is_active')->class('form-check-label') !!}