@extends('admin.layout.master') @section('title', "تعديل الطالب $row->name") @section('content')

تعديل الطالب {{$row->name}}

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

@csrf @method('PATCH')
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('city_id')) {{ $errors->first('city_id') }} @endif
@if ($errors->has('area_id')) {{ $errors->first('area_id') }} @endif
@if ($errors->has('level_id')) {{ $errors->first('level_id') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif

صورة

@if ($errors->has('image')) {{ $errors->first('image') }} @endif
@stop