@extends('admin.layout') @section('content')
    @csrf

    ...
    {{ __('Choose Image') }}
    email_status == 1 ? 'checked' : '' }} name="show_email_addresss" class="custom-control-input" id="show_email_addresss">
    phone_status == 1 ? 'checked' : '' }} name="show_phone" class="custom-control-input" id="show_phone">
    info_status == 1 ? 'checked' : '' }} name="show_information" class="custom-control-input" id="show_information">

    {{ __('The higher the order number is, the later the staff will be shown.') }}

    @foreach ($languages as $language) @php $staffContent = App\Models\Staff\StaffContent::where('staff_id', $staff->id) ->where('language_id', $language->id) ->first(); @endphp
    @php $currLang = $language; @endphp @foreach ($languages as $language) @continue($language->id == $currLang->id)
    @endforeach
    @endforeach
    @endsection @section('script') @endsection