@extends('admin.layout.master') @section('title', 'الأقسام الرئيسية') @section('content')
الأقسام الرئيسية
تعديل البيانات
@csrf @method('PATCH')
الاسم
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
سعر الباقه
@if ($errors->has('price'))
{{ $errors->first('price') }}
@endif
المدة
@if ($errors->has('duration'))
{{ $errors->first('duration') }}
@endif
الوصف
{{ $row->description }}
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
الاختبار
@foreach($exams as $exam)
اختر الاختبار
exam_id == $exam->id) ? 'selected' : '' }} > {{$exam->title}}
@endforeach
تعديل
@stop