@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.agentCode.title_singular') }}
@csrf
@if($errors->has('agent_id'))
{{ $errors->first('agent_id') }}
@endif {{ trans('cruds.agentCode.fields.agent_helper') }}
@if($errors->has('customer_id'))
{{ $errors->first('customer_id') }}
@endif {{ trans('cruds.agentCode.fields.customer_helper') }}
@if($errors->has('code'))
{{ $errors->first('code') }}
@endif {{ trans('cruds.agentCode.fields.code_helper') }}
@endsection