@extends('layouts.frontend.app') @section('content') Site Breadcrumb Home Register @csrf Customer Registration {{-- I am a returning customer --}} @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @if(session('message')) {{ session('message') }} @endif First name* @if($errors->has('firstname')) {{$errors->first('firstname')}} @endif Last name* @if($errors->has('lastname')) {{$errors->first('lastname')}} @endif Phone* @if($errors->has('phone')) {{$errors->first('phone')}} @endif Email* @if($errors->has('email')) {{$errors->first('email')}} @endif Password* @if($errors->has('password')) {{$errors->first('password')}} @endif Confirm Password* @if($errors->has('password_confirmation')) {{$errors->first('password_confirmation')}} @endif Register @endsection
I am a returning customer