@extends('admin.layout.master') @section('title', 'فئات المركبات') @section('content')
فئات المركبات
إنشاء جديد
@csrf
الاسم بالعربية
@if ($errors->has('name_ar'))
{{ $errors->first('name_ar') }}
@endif
الاسم بالانجليزية
@if ($errors->has('name_en'))
{{ $errors->first('name_en') }}
@endif
اللون
@if ($errors->has('color'))
{{ $errors->first('color') }}
@endif
الترتيب
@if ($errors->has('important_order'))
{{ $errors->first('important_order') }}
@endif
عدد المقاعد
@if ($errors->has('seat_counts'))
{{ $errors->first('seat_counts') }}
@endif
حفظ
@stop