@extends("app")@section('head_title', 'Profile | '.getcong('site_name') )@section('head_url', Request::url())@section("content")
@include("_particles.user_sidebar")

Edit Profile

@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif

Account Information

{!! Form::open(array('url' => 'profile','class'=>'','id'=>'myProfile','role'=>'form','enctype' => 'multipart/form-data')) !!}
{!! Form::close() !!}
@endsection