@extends('layouts.admin') @section('title', 'Modifier un magasin') @section('page-title', 'Magasins') @section('content')

Modifier un magasin

Retour
@if($errors->any())
@endif @php $openingHoursText = old('opening_hours'); if ($openingHoursText === null && is_array($store->opening_hours ?? null)) { $lines = []; foreach ($store->opening_hours as $day => $hours) { $lines[] = $day . ': ' . $hours; } $openingHoursText = implode("\n", $lines); } @endphp
@csrf @method('PUT')

Format: une ligne par jour (ex: Lundi: 09:00-18:00) ou JSON.

Annuler
@endsection