@extends('layouts.app') @section('title', 'Edit Officer') @section('content')

Current Officer: Ryan Minor

@method('put') @csrf
@if(!empty($countyOffice->user_id)) @php $usersTypeahead = null; $user = \App\Models\User::find($countyOffice->user_id); if ($user) { $usersTypeahead = $user->first_name.' '.$user->last_name; } @endphp
@else
@endif @error('user_id') {{ $message }} @enderror
@endsection @push('styles') @endpush @push('scripts') @endpush