@extends('layouts.auth') @section('subheading')

{{ __('Already have an account?') }} {{ __('Sign In') }}

@endsection @section('content')
@csrf @if(session()->has('message'))
{{ session()->get('message') }}
@endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@endsection