@extends('layouts.app') @section('title') Admin Profile /Edit @stop @section('breadcrumb') @stop @section('page_header')

Edit Person

@stop @section('content')
{{ csrf_field() }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif

Leave empty to keep the same @if ($errors->has('password')) {{ $errors->first('password') }} @endif


@stop @section('javascript') @stop