@extends("agentportal.layouts.layout") @section("title", "Agent Deposit") @section("page_style")
@endsection @section("content") @php $location_id = $request->location_id?base64_decode($request->location_id):''; @endphp
Agent Deposit
{{ __('message_lang.BTN_BACK') }}
@csrf
Country
*
Select
@foreach ($agentCountries as $key => $agentCountry)
guard('agentportal')->user()->agentLocation->country_id == $key) selected @endif @endhasanyrole @if (old('agent_country_id') == $key) selected @endif>{{ $agentCountry }}
@endforeach
@error('agent_country_id')
{{ $message }}
@enderror
Location
*
Select
@foreach ($agentLocations as $key => $agentLocation)
guard('agentportal')->user()->agent_location_id == $key) selected @endif @endhasanyrole @if (old('agent_location_id') == $key) selected @endif>{{ $agentLocation }}
@endforeach
@error('agent_location_id')
{{ $message }}
@enderror
Amount
*
@error('amount')
{{ $message }}
@enderror
Notes
@error('notes')
{{ $message }}
@enderror
@endsection @section("page_vendors") @endsection @section("page_script") @endsection