@extends('public.layout') @section('title', clean(trans('user::auth.sign_up'))) @section('content')
@include('public.include.notification')
{{ csrf_field() }}

{{ clean(trans('user::auth.sign_up')) }}

@if($errors->has('first_name')) {{ clean($errors->first('first_name')) }} @endif
@if($errors->has('last_name')) {{ clean($errors->first('last_name')) }} @endif
@if($errors->has('username')) {{ clean($errors->first('username')) }} @endif
@if($errors->has('email')) {{ clean($errors->first('email')) }} @endif
@if($errors->has('password')) {{ clean($errors->first('password')) }} @endif
@if($errors->has('password_confirmation')) {{ clean($errors->first('password_confirmation')) }} @endif
@captcha @if($errors->has('captcha')) {{ clean($errors->first('captcha')) }} @endif
@if($errors->has('privacy_policy')) {{ clean($errors->first('privacy_policy')) }} @endif
@endsection