{{-- DOCUMENTATION ------------------------------------------------------------------------------------------------- 1. Include Scripts into form: If you want to include scripts into form, Enter below script into your form array element. You may pass either script file location. 'include_scripts' => '', Or, your custom script. 'include_scripts' => '', 2. Custom Buttons: If you want to show custom buttons instead of this form's inbuild button, Enter below script into your form array element. 'custom_buttons' => [ [ 'type' => 'submit', 'text' => 'save Save Changes', 'attributes' => [ 'class' => 'btn bg-indigo btn-lg waves-effect', 'id' => 'submit-button-id' ] ], [ 'type' => 'button', 'text' => 'arrow_back Back', 'attributes' => [ 'class' => 'btn bg-info btn-lg waves-effect', 'id' => 'back-button-id', 'onclick' => 'your custom script' ] ] ], --}} @extends('admin.layouts.layout', ['title' => $module]) @section('main')