@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')
{{ __('Add Slider') }}
{{ __('Back') }}
@csrf

...
@if ($errors->has('slider_img'))

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

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

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

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

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

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

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

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

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

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

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

@endif

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

@endsection