@extends('web.layouts.master') @section('content')

Reset Password

@include("web.components.error-message")
@csrf
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@if ( auth()->user() == null || auth()->user()->hasRole(RoleEnum::getString(RoleEnum::GUEST)) ) Dont have an account yet? Create account @endif Already have an account? Login
@endsection