@extends('layouts.admin') @section('page-title', 'Edit Pickup Hub') @section('content') {{-- Header --}}

Edit Pickup Hub

Update details for {{ $pickupHub->name }}

@csrf @method('PUT')
{{-- Main Content --}}
{{-- Basic Information --}}

Basic Information

@error('name')

{{ $message }}

@enderror
@error('code')

{{ $message }}

@enderror
{{-- Location Details --}}

Location Details

@error('address')

{{ $message }}

@enderror
@error('city')

{{ $message }}

@enderror
@error('state')

{{ $message }}

@enderror
@error('zip')

{{ $message }}

@enderror
@error('country')

{{ $message }}

@enderror
{{-- Contact Information --}}

Contact Information

{{-- Operating Hours --}}

Operating Hours

@php $hubDays = $pickupHub->getOperatingDaysArray(); @endphp
@php $days = ['Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday']; $abbrs = ['Mon','Tue','Wed','Thu','Fri','Sat','Sun']; $selected = old('operating_days', $hubDays); @endphp @foreach($days as $index => $day) @endforeach
{{-- Sidebar --}}
{{-- Settings --}}

Settings

{{-- Actions --}}
Cancel
@endsection