@extends('adminlte::page') @section('title', 'Edit Suspect') @section('content_header')

Edit Suspect: {{ $suspect->full_name }}

@stop @section('content') @if (session('error')) @endif
@csrf @method('PUT')
@error('case_id') {{ $message }} @enderror

Personal Information


@error('full_name') {{ $message }} @enderror
@error('date_of_birth') {{ $message }} @enderror
@error('gender') {{ $message }} @enderror
@error('address') {{ $message }} @enderror
@error('phone') {{ $message }} @enderror
@error('id_type') {{ $message }} @enderror
@error('id_number') {{ $message }} @enderror
@error('alias') {{ $message }} @enderror
@if($suspect->photo_path)
Suspect Photo

Current photo

@endif
Leave empty to keep current photo. Accepted formats: JPG, PNG. Max size: 5MB @error('photo') {{ $message }} @enderror

Arrest Information


is_arrested) ? 'checked' : '' }}>
is_charged) ? 'checked' : '' }}>
is_in_custody) ? 'checked' : '' }}>
@error('officer_notes') {{ $message }} @enderror
Cancel

Update Arrest Information

@csrf @method('PUT')
is_arrested ? 'checked' : '' }}>
Provide details about this arrest update

Update Charge Information

@csrf @method('PUT')
is_charged ? 'checked' : '' }}>
Provide details about this charge update

Update Custody Information

@csrf @method('PUT')
is_in_custody ? 'checked' : '' }}>
Provide details about this custody update
@stop @section('css') @stop @section('js') @stop