@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.user.title_singular') }}
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.user.fields.name_helper') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{ trans('cruds.user.fields.email_helper') }}
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif {{ trans('cruds.user.fields.password_helper') }}
@if($errors->has('mobile_number'))
{{ $errors->first('mobile_number') }}
@endif {{ trans('cruds.user.fields.mobile_number_helper') }}
@if($errors->has('import_export_code'))
{{ $errors->first('import_export_code') }}
@endif {{ trans('cruds.user.fields.import_export_code_helper') }}
@if($errors->has('cha_code'))
{{ $errors->first('cha_code') }}
@endif {{ trans('cruds.user.fields.cha_code_helper') }}
@if($errors->has('exporter_company_name'))
{{ $errors->first('exporter_company_name') }}
@endif {{ trans('cruds.user.fields.exporter_company_name_helper') }}
@if($errors->has('gst_number'))
{{ $errors->first('gst_number') }}
@endif {{ trans('cruds.user.fields.gst_number_helper') }}
@if($errors->has('address_line_1'))
{{ $errors->first('address_line_1') }}
@endif {{ trans('cruds.user.fields.address_line_1_helper') }}
@if($errors->has('address_line_2'))
{{ $errors->first('address_line_2') }}
@endif {{ trans('cruds.user.fields.address_line_2_helper') }}
@if($errors->has('state'))
{{ $errors->first('state') }}
@endif {{ trans('cruds.user.fields.state_helper') }}
@if($errors->has('city'))
{{ $errors->first('city') }}
@endif {{ trans('cruds.user.fields.city_helper') }}
@if($errors->has('district'))
{{ $errors->first('district') }}
@endif {{ trans('cruds.user.fields.import_export_code_helper') }}
@if($errors->has('postal_code'))
{{ $errors->first('postal_code') }}
@endif {{ trans('cruds.user.fields.postal_code_helper') }}
@if($errors->has('gst'))
{{ $errors->first('gst') }}
@endif {{ trans('cruds.user.fields.gst_helper') }}
@if($errors->has('iec'))
{{ $errors->first('iec') }}
@endif {{ trans('cruds.user.fields.iec_helper') }}
@if($errors->has('pan'))
{{ $errors->first('pan') }}
@endif {{ trans('cruds.user.fields.pan_helper') }}
@if($errors->has('cancelled_cheque'))
{{ $errors->first('cancelled_cheque') }}
@endif {{ trans('cruds.user.fields.cancelled_cheque_helper') }}
@if($errors->has('self_certification'))
{{ $errors->first('self_certification') }}
@endif {{ trans('cruds.user.fields.self_certification_helper') }}
@if($errors->has('loaction'))
{{ $errors->first('loaction') }}
@endif {{ trans('cruds.user.fields.loaction_helper') }}
{{ trans('global.select_all') }} {{ trans('global.deselect_all') }}
@if($errors->has('roles'))
{{ $errors->first('roles') }}
@endif {{ trans('cruds.user.fields.roles_helper') }}
@if($errors->has('approved'))
{{ $errors->first('approved') }}
@endif {{ trans('cruds.user.fields.approved_helper') }}
Cancel
@endsection @section('scripts') @endsection