@extends('layouts.app') @section('content') @include('layouts.inc.breadcrumb',['title' => 'Create an account'])
@error('recaptcha')

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

@enderror
@csrf

Profile details

@include('account::user.form.fname', compact('user'))
@include('account::user.form.lname', compact('user'))
@include('account::user.form.email', compact('user'))
@include('account::user.form.phone', compact('user'))
@include('account::user.form.password', compact('user'))
@include('account::user.form.city_of_residence', compact('user'))
@include('account::user.form.terms', compact('user'))
@push('inline-scripts') @endpush

{{ __('Already registered?') }}

@endsection