Skip to content

Instantly share code, notes, and snippets.

@Ghostscypher
Created February 2, 2022 12:21
Show Gist options
  • Save Ghostscypher/8e578638488595e50c774d4cc9b0ade6 to your computer and use it in GitHub Desktop.
Save Ghostscypher/8e578638488595e50c774d4cc9b0ade6 to your computer and use it in GitHub Desktop.
Client app register blade
@extends('layout.layout')
@section('content')
<form action="{{route('register.post')}}" method="POST">
@csrf
@error('success')
<div class="success">
{{$message}}
</div>
<br><br>
@enderror
@error('error')
<div class="error">
{{$message}}
</div>
<br><br>
@enderror
<br>
<button type="submit">Register with Oauth2-Server</button>
<br>
Already have an account? <a href="{{route('login')}}">Login here</a>
</form>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment