@extends('layouts.app') @section('content')

Edit Profile

Name, Email, Contact

@csrf
ID #{{ $profile->id }} Name
Email Phone
Old Password New Password
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (\Session::has('warning'))
{!! \Session::get('warning') !!}
@endif
@endsection