@extends('Frontend.layout.main') @section('content') @include('Frontend.inc.banners')

@if(session('error')) {{session('error')}} @endif

@php if($errors->has('name') || $errors->has('Email') || $errors->has('Password') ){ $signup_email = 1; } @endphp
@csrf
@error('email') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@csrf @if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('Email')) {{ $errors->first('Email') }} @endif
@if ($errors->has('Password')) {{ $errors->first('Password') }} @endif
@endsection @section('script') @endsection