@component('admin.components.step_form_pages',
[ //'post_url'=>$post_url,
'type'=>'blast',
'title'=> 'Where are you sending this blast on?' ,
'step'=>'0',
'disable_auto_submit'=>true
])
@php $id = 'blast_medium'; $hasError = $errors->has($id) @endphp
@component('admin.components.form_field', ['class'=>'col-12','label'=>$form[$id]['label'], 'required'=>$form[$id]['req'], 'description'=>$form[$id]['descr'], 'hasError'=>$hasError ])
@component('admin.components.form_error_msg', ['hasError'=>$hasError]){{ $errors->first($id) }}@endcomponent
@endcomponent
@php $id = 'whatsapp_template'; $hasError = $errors->has($id) @endphp
@component('admin.components.form_field', ['class'=>'col-12 d-none','label'=>$form[$id]['label'], 'required'=>$form[$id]['req'], 'description'=>$form[$id]['descr'], 'hasError'=>$hasError ])
@component('admin.components.form_error_msg', ['hasError'=>$hasError]){{ $errors->first($id) }}@endcomponent
@endcomponent
@slot('footer_next')
@endslot
@endcomponent