@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') }}
@if (!is_null($userDefaultLang)) @if (!empty($userLanguages)) @endif @endif
@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 seperate 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
@endsection