@extends('admin.layout.master') @section('title', 'تعديل بيانات الدورة') @section('content')

تعديل بيانات الدورة

تعديل البيانات

@csrf @method('PATCH')
@if ($errors->has('title_ar')) {{ $errors->first('title_ar') }} @endif
@if ($errors->has('title_en')) {{ $errors->first('title_en') }} @endif
@if ($errors->has('description_ar')) {{ $errors->first('description_ar') }} @endif
@if ($errors->has('description_en')) {{ $errors->first('description_en') }} @endif
@if ($errors->has('category_id')) {{ $errors->first('category_id') }} @endif
@if ($errors->has('price')) {{ $errors->first('price') }} @endif
@if ($errors->has('start_date')) {{ $errors->first('start_date') }} @endif
@if ($errors->has('end_date')) {{ $errors->first('end_date') }} @endif

مواعيد الدورة

@foreach($course_days as $course_day) @endforeach
# اليوم الساعه من الساعه إلى التحكم
{{$i}} {{$course_day->day_name['ar']}} {{\Carbon\Carbon::parse($course_day->from_hour)->format('g:i:s a')}} {{\Carbon\Carbon::parse($course_day->to_hour)->format('g:i:s a')}}
@stop