@extends('user.layout') @php $userLanguages = \App\Models\User\Language::where('user_id', \Illuminate\Support\Facades\Auth::id())->get(); $userDefaultLang = \App\Models\User\Language::where([['user_id', \Illuminate\Support\Facades\Auth::id()], ['is_default', 1]])->first(); @endphp @includeIf('user.partials.rtl-style') @section('content')
@if (!is_null($userDefaultLang)) @if (!empty($userLanguages)) @endif @endif
{{ __('Texts & Images') }}
@csrf @if ($userBs->theme === 'home_two' || $userBs->theme === 'home_six' || $userBs->theme === 'home_four' || $userBs->theme === 'home_five')
...
@if ($errors->has('work_process_section_img'))

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

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

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

@endif
@if ($userBs->theme != 'home_seven')
@if ($errors->has('work_process_section_subtitle'))

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

@endif
@endif @if ($userBs->theme != 'home_six')
@if ($errors->has('work_process_section_text'))

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

@endif
@endif @if ($userBs->theme === 'home_two')
...
@if ($errors->has('work_process_section_video_img'))

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

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

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

@endif
@endif @if ($userBs->theme === 'home_four' || $userBs->theme === 'home_five' || $userBs->theme === 'home_seven')
@if ($errors->has('work_process_btn_txt'))

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

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

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

@endif
@endif
{{ __('Work Processes') }}
{{ __('Add Work Process') }}
@if (count($workProcessInfos) == 0)

{{ __('NO WORK PROCESS FOUND!') }}

@else
@foreach ($workProcessInfos as $workProcessInfo) @endforeach
{{ __('Icon') }} {{ __('Title') }} {{ __('Serial Number') }} {{ __('Actions') }}
{{ $workProcessInfo->title }} {{ $workProcessInfo->serial_number }}
@csrf
@endif
@endsection @section('scripts') @endsection