@extends('layouts.app') @section('page-title', 'Ubah Data Tamu') @section('content')

Ubah Data Tamu: {{ $guest->full_name }}

@csrf @method('PUT') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if($guest->photo_id)
Foto Identitas
@endif
Batal
@endsection