@extends('backend.layout') @section('content')
{{ __('Edit Organizer') }}
    @csrf

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

    {{ __('Image Size 300x300') }}

    @if ($errors->has('photo'))

    {{ $errors->first('photo') }}

    @endif

    @if ($errors->has('facebook'))

    {{ $errors->first('facebook') }}

    @endif
    @if ($errors->has('twitter'))

    {{ $errors->first('twitter') }}

    @endif
    @if ($errors->has('linkedin'))

    {{ $errors->first('linkedin') }}

    @endif
    @foreach ($languages as $language)
    @php $organizer_info = App\Models\OrganizerInfo::where('organizer_id', $organizer->id) ->where('language_id', $language->id) ->first(); @endphp

    @php $currLang = $language; @endphp @foreach ($languages as $language) @continue($language->id == $currLang->id)
    @endforeach
    @endforeach

    {{ __('Organizer Balance') }} ({{ $currencyInfo->base_currency_symbol_position == 'left' ? $currencyInfo->base_currency_symbol : '' }} {{ $organizer->amount }} {{ $currencyInfo->base_currency_symbol_position == 'right' ? $currencyInfo->base_currency_symbol : '' }})

    @csrf

    @endsection