@extends('layouts.admin') @section('css') @endsection @section('content')
Manage Projects
@include('inc.messages')

@endsection @section('scripts') @endsection {{-- Old code --}} {{--@extends('layouts.admin') @section('content')
Add New  
{!! Form::text("searchproject",isset($ProjectEdit)?$ProjectEdit->searchproject:null,["class"=>"form-control input-inline input-small".($errors->has('searchproject')?" is-invalid":"") ,"autofocus" ,"placeholder"=>"Search Project" ,"required"]) !!} {{ Form::button('  Search', ['type' => 'submit', 'class' =>'btn btn-md green table-group-action-submit'] ) }}

Manage Projects
@include('inc.messages')
@foreach($Projects as $Project) @endforeach
Title
Status
Image
Actions
{{$Project->title}}
@if ($Project->status == 1) Enabled @else Disabled @endif

 Edit
@endsection --}}