@extends('settings::layouts.master',[ 'title' => __('add') , 'crumbs' => [ [ route("$data->route_name.index"),__("$data->title") ], [ '#',__('add') ], ]]) @section('content') @component('settings::components.form') @slot('open') {!! Form::open(['route' => "$data->route_name.store", 'method' => 'post', 'enctype' => 'multipart/form-data']) !!} @endslot @slot('body')
@include("$data->view_path.field")
@endslot @endcomponent @endsection @push('script') {!! JsValidator::formRequest($data->StoreRequest) !!} @endpush