@extends('layouts.accounts') @section('content')

Create account

@csrf @honeypot
{{-- --}} @if ($errors->has('firstname')) {{ $errors->first('firstname') }} @endif
{{-- --}} @if ($errors->has('lastname')) {{ $errors->first('lastname') }} @endif
{{-- --}} @if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
{{-- --}} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{-- --}} @if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{-- --}}
@if ($errors->has('remember')) Accept terms and conditions @endif
@endsection