@extends('admin.layout.master') @section('title', " الكابتن $row->name") @section('content')

{{'الكابتن ' . $row->name}}

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

@csrf @method('PATCH')
@if ($errors->has('fullname')) {{ $errors->first('fullname') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@if ($errors->has('id_number')) {{ $errors->first('id_number') }} @endif
@if ($errors->has('wallet')) {{ $errors->first('wallet') }} @endif
@if ($errors->has('seats_count')) {{ $errors->first('seats_count') }} @endif
@if ($errors->has('plate_number')) {{ $errors->first('plate_number') }} @endif
@if ($errors->has('color')) {{ $errors->first('color') }} @endif
@if ($errors->has('country_id')) {{ $errors->first('country_id') }} @endif
@if ($errors->has('city_id')) {{ $errors->first('city_id') }} @endif
@if ($errors->has('mark_id')) {{ $errors->first('mark_id') }} @endif
@if ($errors->has('model_id')) {{ $errors->first('model_id') }} @endif

صورة

@if ($errors->has('image')) {{ $errors->first('image') }} @endif
@if ($errors->has('admin_approve')) {{ $errors->first('admin_approve') }} @endif
@if ($errors->has('block')) {{ $errors->first('block') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@stop @section('scripts') @stop