@extends('layout.simpleapp') @section('content')

{{__('Hello, Friend')}}

{{__('If you have an account already you can sign in')}}

{{ __('Sign In') }}

{{ __('Sign Up') }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (Session::has('error'))
  • {{ session('error') }}
@endif @csrf
{{ __('Please sign Up to Enter') }}
   
{{ __('Already have an Account?') }}   {{ __('Sign In') }}
@endsection @section('script') @endsection