@extends('layouts.app') @php if($action == 'create'){ $form_action = route($parentRouteName.'.store'); $createItemName = __('lang.create') ." " .$moduleName; $breadcrumbCurrentName = __('lang.create'); $submit_button_text = __('lang.save'); } else if($action == 'edit'){ $form_action = route($parentRouteName.'.update',$additional_charge->id); $createItemName = __('lang.edit') ." " . $moduleName; $breadcrumbCurrentName = __('lang.edit'); $submit_button_text = __('lang.update'); } $breadcrumbCurrentIcon = "add_box"; @endphp @section('title') {{ $moduleName }}->{{ $createItemName }} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content') {{__('lang.back')}} @include('admin.partials.breadcrumbs') {{ $createItemName }} @csrf {{__('lang.name')}} {{$submit_button_text}} {{__('lang.back')}} @stop @push('include-css') @endpush @push('include-js') @endpush