@extends('agent.layout') @section('content')
{{ __('Edit Profile') }}
    @csrf

    {{ __('Details') }}



    @if ($agent->image != null) ... @else ... @endif
    {{ __('Choose Photo') }}

    show_email_addresss == 1 ? 'checked' : '' }} name="show_email_addresss" class="custom-control-input" id="show_email_addresss">
    show_phone_number == 1 ? 'checked' : '' }} name="show_phone_number" class="custom-control-input" id="show_phone_number">
    show_contact_form == 1 ? 'checked' : '' }} name="show_contact_form" class="custom-control-input" id="show_contact_form">
    @foreach ($languages as $language)
    @php $agent_info = App\Models\AgentInfo::where('agent_id', $agent->id) ->where('language_id', $language->id) ->first(); @endphp

    @endforeach
    @endsection