@extends('backend.layouts.app') @section('title') {{ __($module_action) }} {{ __($module_title) }} @endsection @section('content')
{{ html()->form('POST', route("backend.notification-templates.store"))->acceptsFiles()->class('form') ->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() }} @include ('notificationtemplate::backend.notificationtemplates.form') {{ html()->form()->close() }}
@endsection @push('after-scripts') @endpush