@extends('layouts.admin') @section('content')
{{Form::open(array('url' => '/account/profile', 'method' => 'POST'))}}
{{Form::label('title',array())}} {{Form::text('title',null,array('required' => true,'class' =>'form-control'))}}
{{Form::label('description',array())}} {{Form::textArea('description',null,array('required' => true,'class' =>'form-control'))}}
{{Form::submit('Submit',array('class' => 'btn btn-success'))}}
{{Form::close()}}

Profiles

@if(isset($profiles)) @foreach($profiles as $profile) @if($profile->is_active == '1') @else @endif @endforeach @endif
Created Date Title Description Status Actions
{{$profile->created_at}} {{$profile->title}} {{$profile->description}} Active Inactive
@stop @section('pageBottomJs') @stop