update profile/change password and profile cosmetic changes

This commit is contained in:
Nabeel Shahzad
2017-12-24 12:12:26 -06:00
parent 84f6c58cb9
commit 0bb2dabb8c
6 changed files with 271 additions and 73 deletions
@@ -0,0 +1,13 @@
@extends('layouts.default.app')
@section('title', 'edit profile')
@section('content')
<div class="row">
<div class="col-md-12">
<h2 class="description">edit your profile</h2>
@include('flash::message')
{!! Form::model($user, ['route' => ['frontend.profile.update', $user->id], 'method' => 'patch']) !!}
@include('layouts.default.profile.fields')
{!! Form::close() !!}
</div>
</div>
@endsection