@extends('frontend.layouts.master') @php $lang = selectedLang(); $auth_slug = Illuminate\Support\Str::slug(App\Constants\SiteSectionConst::AUTH_SECTION); $auth_text = App\Models\Admin\SiteSections::getData( $auth_slug)->first(); @endphp @section('content') {{ @$auth_text->value->language->$lang->register_title }} {{ @$auth_text->value->language->$lang->register_text }} {{ __("Account Type") }} * {{ __("Select One") }} {{ __("Personal Account") }} {{ __("Business Account") }} @csrf @include('admin.components.form.input',[ 'name' => "firstname", 'placeholder' => __("First Name"), 'value' => old("firstname"), ]) @include('admin.components.form.input',[ 'name' => "lastname", 'placeholder' => __("Last Name"), 'value' => old("lastname"), ]) @include('admin.components.form.input',[ 'type' => "email", 'name' => "email", 'placeholder' => __("Email"), 'value' => old("email"), ]) {{ __("Select Country") }} {{ __("I have read agreed with the") }} {{ __("Terms Condition") }} & {{ __("Privacy Policy") }} {{ __("Register Now") }} {{ __("Already Have An Account?") }} {{ _("Login Now") }} @csrf @include('admin.components.form.input',[ 'name' => "firstname", 'placeholder' => __("First Name"), 'value' => old("firstname"), ]) @include('admin.components.form.input',[ 'name' => "lastname", 'placeholder' => __("Last Name"), 'value' => old("lastname"), ]) @include('admin.components.form.input',[ 'type' => "email", 'name' => "email", 'placeholder' => __("Email"), 'value' => old("email"), ]) {{ __("Select Country") }} {{ __("I have read agreed with the") }} {{ __("Terms Condition") }} & {{ __("Privacy Policy") }} {{ __("Register Now") }} {{ __("Already Have An Account?") }} {{ _("Login Now") }} @endsection @push('script') @endpush
{{ @$auth_text->value->language->$lang->register_text }}