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

Manage Slider


Manage Slider
@if(Session::has('success')) @endif @if(count($errors) > 0) @endif {!! Form::open(['route'=>'slider_post','method'=>'POST','files'=>true]) !!}

Bold Text :

Small Text :

{!! Form::submit('Add New Slider', ['class'=>'btn btn-primary btn-block btn-lg margin-top-20']) !!}
{!! Form::close() !!}
{{--panel body--}}
{{--end col--}}
{{--//end Row--}}
@foreach($slider as $s)

{{ $s->bold_text }}

{{ $s->small_text }}

{!! Form::open(['route'=>['slider_delete',$s->id],'method'=>'DELETE']) !!} {!! Form::close() !!}
@endforeach
@endsection