@extends('backend.layouts.master') @section('section-title', 'User Profile') @section('page-title', 'Profile') @section('content')
Update User Profile
@csrf
{{ ($errors->has('name'))?$errors->first('name'):''; }}
{{ ($errors->has('email'))?$errors->first('email'):''; }}
{{ ($errors->has('phone'))?$errors->first('phone'):''; }}
Change Password
@csrf
{{ ($errors->has('password'))?$errors->first('password'):''; }}
{{ ($errors->has('new_password'))?$errors->first('new_password'):''; }}
{{ ($errors->has('con_password'))?$errors->first('con_password'):''; }}
@endsection