@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.customerType.title_singular') }}
@csrf
@if($errors->has('customer_type')) {{ $errors->first('customer_type') }} @endif {{ trans('cruds.customerType.fields.customer_type_helper') }}
@foreach(App\Models\CustomerType::STATUS_RADIO as $key => $label)
@endforeach @if($errors->has('status')) {{ $errors->first('status') }} @endif {{ trans('cruds.productType.fields.status_helper') }}
@endsection