{{HTML::style('css/userprofile.css')}}
Toggle navigation
{{HTML::link('/', 'Mentconnect', array('class' => 'navbar-brand'))}}
Welcome... {{ $user->first }}
{{HTML::image('/'.$user->photo, 'profile', array('class' => 'img-responsive'))}}
Change Picture
{{ Form::open(array('route' => 'emails.store', 'class' => 'form-horizontal')) }}
To
{{Form::email('to_address', \Input::old('to_address'), array('class' => 'form-control form-control-bordered', 'tabindex' => '1'))}}
{{$errors->first('to_address')}}
Subject
{{ Form::text('subject', \Input::old('subject'), array('class' => 'form-control form-control-bordered', 'tabindex' => '2')) }}
{{$errors->first('subject')}}
Message
{{ Form::textarea('message', \Input::old('message'), array('class' => 'form-control form-control-bordered', 'tabindex' => '3')) }}
{{$errors->first('message') }}
{{Form::submit('Send', array('class' => 'btn btn-primary btn-large submit-button'))}}
{{ Form::close() }}
Page rendered in 0.08217s using 6 queries.