@extends('backend.layouts.app')
@section('content')
{{ html()->form('POST', route('backend.faqs.store'))
->attribute('enctype', 'multipart/form-data')
->attribute('data-toggle', 'validator')
->attribute('id', 'form-submit') // Add the id attribute here
->class('requires-validation') // Add the requires-validation class
->attribute('novalidate', 'novalidate') // Disable default browser validation
->open() }}
@csrf
{{ html()->submit(trans('messages.save'))->class('btn btn-md btn-primary float-right')->id('submit-button') }}
{{ html()->form()->close() }}
@endsection
@push('after-scripts')
@endpush