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

    {{ __('Details') }}



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

    {{ __('Image Size 80x80') }}

    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 $vendor_info = App\Models\VendorInfo::where('vendor_id', $vendor->id) ->where('language_id', $language->id) ->first(); @endphp

    @endforeach
    @endsection @section('script') @endsection