@extends('user.layout') @php $setLang = \App\Models\User\Language::where([ ['code', request()->input('language')], ['user_id', Auth::id()], ])->first(); $userDefaultLang = \App\Models\User\Language::where([['user_id', Auth::id()], ['is_default', 1]])->first(); $userLanguages = \App\Models\User\Language::where('user_id', Auth::id())->get(); @endphp @if (!empty($setLang) && $setLang->rtl == 1) @section('styles') @endsection @endif @section('content')
{{ __('Input_Fields') }}

** {{ __('Do_not_create') }} {{ __('Name_and_Email') }} {{ __('input_field_it_will_be_in_the_Request_a_Quote_form_By_default') }}

@if (count($inputs) > 0)
@foreach ($inputs as $key => $input) {{-- input type text --}} @if ($input->type == 1)
{{ csrf_field() }}
@elseif ($input->type == 2)
{{ csrf_field() }}
@elseif ($input->type == 3)
{{ csrf_field() }}
@foreach ($input->quote_input_options as $key => $option)
@endforeach
@elseif ($input->type == 4)
{{ csrf_field() }}
@elseif ($input->type == 6)
{{ csrf_field() }}
@elseif ($input->type == 7)
{{ csrf_field() }}
@elseif ($input->type == 5)
{{ csrf_field() }}
@endif @endforeach
@endif
{{ __('Create_Input') }}
{{ csrf_field() }}

@endsection @section('scripts') @endsection