@extends('frontend.layout.master') @section('title', 'User Settings') @section('content')

{{ $user->name }}

Edit Profile
{{ csrf_field() }} {!! method_field('patch') !!}
@if ($errors->has('name'))@endif
@if ($errors->has('email'))@endif
@if ($errors->has('about_me'))@endif
Change Avatar
{{ csrf_field() }} {!! method_field('patch') !!}
Change Password
{{ csrf_field() }}
@if ($errors->has('old_password'))@endif
@if ($errors->has('new_password'))@endif
@if ($errors->has('new_password_confirmation'))@endif
Social Connections
@if(!empty($user->google_id)) Disconnect Facebook @else Connect to Facebook @endif
@if(!empty($user->google_id)) Disconnect Google @else Connect to Google @endif
Edit Notifications

Coming Soon!

@endsection