@extends('layouts.admin')
@section('title', 'Modifier un magasin')
@section('page-title', 'Magasins')
@section('content')
@if($errors->any())
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@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
@endsection