@extends('layouts.app') @section('content')
@csrf

User(Agent) Login Information

@if($errors->has('full_name'))
{{ $errors->first('full_name') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif

Multifactor Authentication

If enabled, agent will be forced to setup Google Authenticator on first login.

Company / Agency Information

@if($errors->has('company_name'))
{{ $errors->first('company_name') }}
@endif
@if($errors->has('country_id'))
{{ $errors->first('country_id') }}
@endif
(Setup Agent Preffered Currency). @if($errors->has('currency_id'))
{{ $errors->first('currency_id') }}
@endif
{{ $AgencyDetails->phone_code ?? '+968' }}
@if($errors->has('mobile_number'))
{{ $errors->first('mobile_number') }}
@endif

Document Uploads

@if(!empty($AgencyDetails->logo_path))
Company Logo
@endif
@if(!empty($AgencyDetails->trade_license_path))
Trade License
@endif
@if(!empty($AgencyDetails->pan_proof_path))
PAN Proof
@endif
@if(!empty($AgencyDetails->gst_proof_path))
GST Proof
@endif
@endsection @section('scripts') @endsection