@extends('backend.app') @section('title', 'Edit Hours') @push('style') @endpush @section('content') {{-- PAGE-HEADER --}} {{-- PAGE-HEADER --}}
@csrf @method('PUT') @php $days = old('day', $hours->day ?? ['']); $times = old('time', $hours->time ?? ['']); $textColors = old('text_color', $hours->text_color ?? ['']); $count = max(count($days ?? []), count($times ?? []), count($textColors ?? []), 1); @endphp
@for ($i = 0; $i < $count; $i++)
@error('day.' . $i) {{ $message }} @enderror
@error('time.' . $i) {{ $message }} @enderror
@error('text_color.' . $i) {{ $message }} @enderror
@endfor
Back
@endsection @push('scripts') @endpush