@extends('layouts.app') {{-- Important Variables --}} @php $moduleName = " Token Entry On Existing Sell"; $createItemName = ucfirst($action) . $moduleName; $breadcrumbMainName = $moduleName; $breadcrumbCurrentName = ucfirst($action); $breadcrumbMainIcon = 'fas fa-industry'; $breadcrumbCurrentIcon = 'add_box'; $parentButton = 'Save'; $parentRouteName = 'sell'; $formAction = route('token.store_token_on_existing_sell'); @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') @csrf {{ $createItemName }} @include('layouts.components.select_field', [ 'col' => 4, 'name' => 'sell_id', 'options' => $sells->map(fn($sell) => [ 'id' => $sell->id, 'name' => $sell->registration_no]), 'default_option' => __('lang.select_sell'), 'label' => __('lang.sell'), 'labelClass' => 'required', ]) @include('layouts.components.select_field', [ 'col' => 4, 'name' => 'payment_type_id', 'options' => $payment_types, 'default_option' => __('lang.select_term'), 'label' => __('lang.token_term'), ]) {{__('lang.token_refund_details')}} add_circle_outline {{ $parentButton }} {{ __('lang.back') }} @stop @push('include-css') @endpush @push('include-js') @endpush