@extends('layouts.app')
{{-- Important Variables --}}
@php
if($action == 'create'){
$createItemName = __('lang.create') ." " .$moduleName;
$breadcrumbCurrentName = __('lang.create');
$submit_button_text = __('lang.save');
}
else if($action == 'edit'){
$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')
@stop
@push('include-css')
@endpush
@push('include-js')
@endpush