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