@extends('layouts.master-without-nav') @section('title') Register @endsection @section('body') @endsection @section('content')

Recipient Registration


@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @include('partials.register-form')
@endsection @section('scripts') @endsection