@extends("agentportal.layouts.layout") @if(isset($details)) @section("title", trans('message_lang.LBL_EDIT_EMAILS')) @else @section("title", trans('message_lang.LBL_ADD_EMAILS')) @endif @section("page_style") @endsection @section("content")
@if(isset($details)) {!! trans('message_lang.LBL_EDIT_EMAILS') !!} @else {!! trans('message_lang.LBL_ADD_EMAILS') !!} @endif
{{ trans('message_lang.BTN_BACK') }}
@csrf
{!! trans('message_lang.LBL_COUNTRY') !!}
*
{!! trans("message_lang.PLACEHOLDER_SELECT") !!}
@foreach($agentCountries as $key => $agentCountry)
country_id) == $agentCountry->id) selected @endif>{{ $agentCountry->name }}
@endforeach
@error('country_id')
{{ $message }}
@enderror
{!! trans('message_lang.LBL_TYPE') !!}
*
{!! trans("message_lang.PLACEHOLDER_SELECT") !!}
@foreach($types as $key => $type)
type) == $type) selected @endif>{{ ucfirst($type) }}
@endforeach
@error('type')
{{ $message }}
@enderror
{!! trans('message_lang.LBL_EMAILS') !!}
*
{{ old('emails', @$details->emails) }}
@error('emails')
{{ $message }}
@enderror
@endsection @section("page_vendors") @endsection @section("page_script") @endsection