@extends('user::admin.auth.layout') @section('title', clean(trans('user::auth.sign_up'))) @section('content')
@include('admin::include.notification')

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

{{ csrf_field() }}
@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('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
@endsection