@extends('backend.app') @section('title', 'Create Hours') @push('style') @endpush @section('content') {{-- PAGE-HEADER --}} {{-- PAGE-HEADER --}}
@csrf @method('POST') @php $days = old('day', ['']); $times = old('time', ['']); $color = old('color', ['']); $count = max(count($days ?? []), count($times ?? []), count($color ?? []), 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