@extends('layouts.app') @section('main-content')

{{ __('Sign up') }}

@csrf
* @if($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
* @if($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
* {{ __('We\'ll never share your email with anyone else.') }} @if($errors->has('email')) {{ $errors->first('email') }} @endif
@if($errors->has('username')) {{ $errors->first('username') }} @endif
* @if($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if($errors->has('address')) {{ $errors->first('address') }} @endif
* @if($errors->has('password')) {{ $errors->first('password') }} @endif
* @if($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif

{{ __('Have an account?') }} {{ __('Log In') }}

@endsection