@extends('front.layouts.main') @section('title'){{ @trans('seo.signup_title') }}@endsection @section('description'){{ @trans('seo.signup_desc') }}@endsection @section('content') {{ @trans('client_signup.getting_started') }} @csrf @honeypot {{ @trans('client_signup.first_name') }} @if($errors->has('first_name')) {{$errors->first('first_name')}} @endif {{ @trans('client_signup.last_name') }} @if($errors->has('last_name')) {{$errors->first('last_name')}} @endif {{ @trans('client_signup.phone_number') }} @if($errors->has('mobile')) {{$errors->first('mobile')}} @endif {{ @trans('client_signup.select_country') }} {{ @trans('client_signup.select_country') }} @foreach ($countries as $country) id) selected="selected" @endif >{{$country->name}} @endforeach @if($errors->has('country')) {{$errors->first('country')}} @endif Birth Date date_range @if($errors->has('birth_date')) {{$errors->first('birth_date')}} @endif {{ @trans('client_signup.email') }} @if($errors->has('email')) {{$errors->first('email')}} @endif {{ @trans('client_signup.password') }} Password must contain at least one special character @if($errors->has('password')) {{$errors->first('password')}} @endif {{ @trans('client_signup.confirm_password') }} @if($errors->has('password_confirmation')) {{$errors->first('password_confirmation')}} @endif I have read and agree to the Terms and Conditions. @if($errors->has('agreecheck')) {{$errors->first('agreecheck')}} @endif @if($errors->has('g-recaptcha-response')) {{$errors->first('g-recaptcha-response')}} @endif {{ @trans('client_signup.register') }} Already a member? {{ @trans('client_signup.sign_in') }} @endsection @push('pageJs') @endpush
Already a member? {{ @trans('client_signup.sign_in') }}