@extends('layouts.app') @section('title', 'Register Personal Details') @push('styles') @endpush @push('scripts') @endpush @section('content')
{{-- Header --}}

Personal Details Registration

Welcome, {{ auth()->user()->name }}

Back to Dashboard
{{-- Flash Messages --}} @if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Registration Form --}}

Step 1: Register Personal Details

Before applying for licenses to harvest and export reef fish, you must first complete your profile registration.

Note: All supporting documents must be certified true copies in PDF, JPG, or PNG format (max 5MB each).

@csrf
{{-- Full Name --}}
{{-- Date of Birth --}}
{{-- Gender --}}
{{-- Nationality --}}
{{-- Home Island (Kiribati only) --}}
{{-- Phone Number --}}

Country code will be filled automatically based on nationality

{{-- Residential Address --}}
{{-- Email --}}

Your registered email address

{{-- Required Documents --}}

Required Documents

All documents must be certified true copies

Upload a certified true copy of your police clearance

For foreigners: Passport biodata page | For locals: Recognized national ID

Upload a certified true copy of your birth certificate

Upload a certified true copy of your national ID

{{-- Declaration --}}

By submitting this form, I declare that:

  • All information provided is true and accurate
  • All submitted documents are certified true copies
  • I understand that providing false information may result in application rejection
@endsection