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

My Profile.

@include('users.left')

Account Details

{{ csrf_field() }}
@if ($errors->has('fname')) {{ $errors->first('fname') }} @endif
@if ($errors->has('lname')) {{ $errors->first('lname') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
@if ($errors->has('headline')) {{ $errors->first('headline') }} @endif
@if ($errors->has('bio')) {{ $errors->first('bio') }} @endif
Back
@endsection