@extends('frontend.layouts.master') @section('title', 'Edit ' . $user->name) @section('content') Edit {{ $user->name }} Home Account {{ $user->name }} {{ csrf_field() }} {!! method_field('patch') !!} Required Information Display Name @if ($errors->has('name')){{ $errors->first('name') }}@endif E-Mail Address @if ($errors->has('email')){{ $errors->first('email') }}@endif Optional Information Location @if ($errors->has('location')){{ $errors->first('location') }}@endif About Me @if(old('bio')){{ old('bio') }}@elseif(isset($user)){{ $user->bio }}@endif @if ($errors->has('bio')){{ $errors->first('bio') }}@endif Update Profile @include('frontend.account.profile.partials.sidebar') @endsection