@extends('user.layout') @php $userDefaultLang = \App\Models\User\Language::where([ ['user_id', \Illuminate\Support\Facades\Auth::id()], ['is_default', 1], ])->first(); $userLanguages = \App\Models\User\Language::where('user_id', \Illuminate\Support\Facades\Auth::id())->get(); @endphp @includeIf('user.partials.rtl-style') @section('content')
{{ __('Update Static Version') }}
@includeIf('user.partials.languages')
@if ($userBs->theme != 'home_fourteen')
@csrf
...
@if ($errors->has('img'))

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

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

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

@endif
@if ($userBs->theme == 'home_twelve')
{{ __('Use comma (,) to separate the designation') }}
@endif @if ($userBs->theme !== 'home_twelve')
@if ($errors->has('subtitle'))

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

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

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

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

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

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

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

@endif
@if ($userBs->theme == 'home_ten')
@if ($errors->has('secound_btn_name'))

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

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

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

@endif
@endif @if ($userBs->theme == 'home_eleven')
@if ($errors->has('secound_btn_name'))

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

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

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

@endif
@endif
@endif @if ($userBs->theme == 'home_fourteen')
@csrf
...
@if ($errors->has('img'))

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

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

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

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

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

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

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

@endif
...
@if ($errors->has('img2'))

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

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

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

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

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

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

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

@endif
...
@if ($errors->has('img3'))

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

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

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

@endif
@endif
@endsection