@extends('user.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('user.partials.rtl-style') @php $defaultLang = App\Models\User\Language::where('is_default', 1)->where('user_id', $user->id)->first(); $defaultLangCode = trim('user_' . $defaultLang->code); $dashboardLang = session('user_dashboard_lang', $defaultLangCode); $dashboardLangCode = str_replace('user_', '', $dashboardLang); @endphp @section('content')
{{ __('Create New Work Process') }}
@csrf
@if ($errors->has('icon'))

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

@endif
{{ __('NB: click on the dropdown sign to select a icon') }}.
@if ($errors->has('icon'))

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

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

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

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

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

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

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

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

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

@endif

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

@endsection