@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.logistic.title_singular') }}
@method('POST') @csrf
@if($errors->has('code'))
{{ $errors->first('code') }}
@endif {{ trans('cruds.logistic.fields.code_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.logistic.fields.name_helper') }}
@foreach(App\Models\Logistic::TYPE_RADIO as $key => $label)
@endforeach @if($errors->has('type'))
{{ $errors->first('type') }}
@endif {{ trans('cruds.logistic.fields.type_helper') }}
@if($errors->has('admin_fee'))
{{ $errors->first('admin_fee') }}
@endif {{ trans('cruds.logistic.fields.admin_fee_helper') }}
@if($errors->has('fee_type'))
{{ $errors->first('fee_type') }}
@endif {{ trans('cruds.logistic.fields.fee_type_helper') }}
@if($errors->has('logo_image_path'))
{{ $errors->first('logo_image_path') }}
@endif {{ trans('cruds.logistic.fields.logo_image_path_helper') }}
@if($errors->has('attributes'))
{{ $errors->first('attributes') }}
@endif {{ trans('cruds.logistic.fields.attributes_helper') }}
{{ trans('global.select_all') }} {{ trans('global.deselect_all') }}
@if($errors->has('merchants'))
{{ $errors->first('merchants') }}
@endif {{ trans('cruds.logistic.fields.merchant_helper') }}
@endsection @section('scripts') @endsection