@extends('layouts.app') @section('title', 'Profile Settings') @section('content')

Profile Settings

{{Form::open(['url'=>'/profile/settings', 'files' => true])}}

Profile Settings


@if(count($errors->all())) @foreach ($errors->all() as $error)
× Alert! {{ $error }}
@endforeach @endif @if(Session::has('message'))
× Alert! {{ Session::get('message') }}
@endif
{{Form::close()}}
@stop @section('script') @stop