Created
February 2, 2022 12:21
-
-
Save Ghostscypher/8e578638488595e50c774d4cc9b0ade6 to your computer and use it in GitHub Desktop.
Client app register blade
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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