@extends('backend.layout') @section('content')
{{ __('Add Project') }}
    @csrf

    @csrf

    @csrf

    ...
    {{ __('Choose Image') }}
    {{--

    {{ __('if you do not select any agent, then this project will be listed under you') }}

    --}}
    {{--

    {{ __('if you do not select any agent, then this project will be listed under Vendor') }}

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

    {{ __('Additional Features (Optional)') }}

    {{ __('Label') }} {{ __('Value') }}
    @foreach ($languages as $language)
    @endforeach
    @foreach ($languages as $language)
    @endforeach
    @endsection @php $languages = App\Models\Language::get(); $labels = ''; $values = ''; foreach ($languages as $language) { $label_name = $language->code . '_label[]'; $value_name = $language->code . '_value[]'; if ($language->direction == 1) { $direction = 'form-group rtl text-right'; } else { $direction = 'form-group'; } $labels .= "
    "; $values .= "
    "; } @endphp @section('script') @endsection