@extends('layouts.layout') @section('title', 'Manage Logo') @section('content')

Manage Partner


Manage Partner
@if(Session::has('success')) @endif @if(count($errors) > 0) @endif {!! Form::open(['route'=>'partner_post','method'=>'POST','files'=>true]) !!}
{!! Form::submit('Add New Partner', ['class'=>'btn btn-primary btn-block btn-lg margin-top-20']) !!}
{!! Form::close() !!}
{{--panel body--}}
{{--end col--}}
{{--//end Row--}}
@foreach($partner as $p)
{!! Form::open(['route'=>['partner_delete',$p->id],'method'=>'DELETE']) !!} {!! Form::close() !!}
@endforeach
@endsection