@extends('layouts.theme') @section('title','Edit User') @section('style') @endsection @section('content')
Edit User
@include('alertsInfo')
@csrf
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('user_name'))
{{ $errors->first('user_name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('phone_no'))
{{ $errors->first('phone_no') }}
@endif
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if ($errors->has('file'))
{{ $errors->first('file') }}
@endif
@endsection @section('script') @endsection