@extends('layouts.app') {{--Important Variables--}} @php $ParentRouteName = 'fixed_asset_category'; $moduleName = " Fixed Asset Category"; $breadcrumbMainName = $moduleName; if($action == 'create'){ $form_action = route($ParentRouteName.'.store'); $createItemName = __('lang.create') . $moduleName; $breadcrumbCurrentName = " Create"; $submit_button_text = __('lang.save'); } else if($action == 'edit'){ $form_action = route($ParentRouteName.'.update',$fixed_asset_category->id); $createItemName = __('lang.edit') . $moduleName; $breadcrumbCurrentName = " Edit"; $submit_button_text = __('lang.update'); } $breadcrumbMainIcon = "fas fa-barcode"; $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')

{{ $createItemName }}


{{ csrf_field() }}
{{__('lang.back')}}
@stop @push('include-css') @endpush @push('include-js') @endpush