Files
2023-09-04 19:53:37 -04:00

13 lines
243 B (Stored with Git LFS)
PHP

@extends('frontend.layouts.app')
@section('content')
<div class="alert alert-danger text-center mt-3">
@if(isset($errorMessage))
<h1 style="color:red;">{{ $errorMessage }}</h1>
@endif
</div>
@endsection