@extends('layouts.app') @section('title', 'Edit Measurement') @section('content') Edit Measurement Update existing measurement details @csrf @method('PUT') Member -- Select Member -- @foreach($members as $member) member_id == $member->contact_id ? 'selected' : '' }}> {{ $member->contact_id }} - {{ $member->name }} @endforeach Measurement Date @php $fields = [ 'height' => 'Height', 'weight' => 'Weight', 'chest' => 'Chest', 'neck' => 'Neck', 'waist' => 'Waist', 'thigh' => 'Thigh', 'arm' => 'Arm', 'fat' => 'Fat', ]; @endphp @foreach($fields as $field => $label) {{ $label }} @endforeach Remarks Update Measurement @endsection
Update existing measurement details