@extends('layouts.guest') @section('title', 'Register - Hotel Management System') @section('content')

Create Account

Set up your hotel management account

@if ($errors->any())

Please fix the following errors:

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@error('name')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror

Already have an account? Sign in here

@endsection