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

Create Pickup Hub

Add a new pickup location for customer orders

@csrf
{{-- 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 $days = ['Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday']; $abbrs = ['Mon','Tue','Wed','Thu','Fri','Sat','Sun']; $selected = old('operating_days', ['Monday','Tuesday','Wednesday','Thursday','Friday']); @endphp @foreach($days as $index => $day) @endforeach
{{-- Sidebar --}}
{{-- Settings --}}

Settings

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