@extends('frontend.layouts.master') @section('title', 'Edit ' . $user->name) @section('content')

Edit {{ $user->name }}

{{ csrf_field() }} {!! method_field('patch') !!}
Required Information
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
Optional Information
@if ($errors->has('location'))
{{ $errors->first('location') }}
@endif
@if ($errors->has('bio'))
{{ $errors->first('bio') }}
@endif
@include('frontend.account.profile.partials.sidebar')
@endsection