@extends('layout.master') @section('page_title','Profile') @section('head') @endsection @section('container')

Profile

@if(Session::has('message'))
{{ Session::get('message') }}
@endif @if (Session::has('errors'))
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif
{{ csrf_field() }}
@if($user->photo!='')


@endif
{{$user->name}}
Upload new ?
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('phone')) {{$errors->first('phone') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@endsection