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