@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')
{{ __('Create New Member') }}
@csrf

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@endif
@endsection