@extends('layouts.admin-master') @section('title', 'Edit Farmer') @section('style') @include('admin.style') @endsection @section('content')
@include('admin.header')
{{-- Page Title --}}

Edit Farmer

@if ($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif {{-- Header Card --}}
@if ($farmer->profile_image) @else @endif

{{ $farmer->first_name }} {{ $farmer->last_name }}

{{ $farmer->phone }}  | {{ $farmer->user->email ?? '—' }}

Farmer ID #{{ $farmer->id }}  ·  Registered {{ $farmer->created_at->format('d M Y') }}

@csrf @method('PUT')
{{-- LEFT COLUMN --}}
{{-- Profile Image --}}
Profile Photo

Click to change photo

JPG, PNG · Max 2MB

{{-- Contact --}}
Contact Info
{{-- RIGHT COLUMN --}}
{{-- Personal Details --}}
Personal Details
{{-- Address --}}
Address Information
{{-- Actions --}}
Cancel
@include('admin.footer') @section('script') @include('admin.script') @endsection
@endsection