@extends('laraguard::layout') @section('card-body')
@csrf

{{ trans('laraguard::messages.continue') }}

@if($errors->hasAny())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@endsection