@extends('cms.application') @section('content')
@if(empty($backgrounds))
Add Background Photos
{!! Form::open(['route' => 'cms.backgrounds.index', 'files' => true]) !!} @include('cms.backgrounds._form', ['submitButton' => "Save"]) {!! Form::close() !!}
@else
Current Background Photos
MAIN BACKGROUND
Main Background
{{--
BANNER BACKGROUND
CampusLife Background
--}} {{-- @if($backgrounds->second_bg)
SECOND HOMEPAGE BACKGROUND
Second Background
@endif --}}
{!! link_to_route('cms.backgrounds.destroy', "Delete Backgrounds", array($backgrounds->id), array('data-method' => 'delete', 'data-confirm' => 'Are you Sure' ,'class' => 'label theme-b bg-danger text-white f-12')) !!}
Edit Background Photos
{!! Form::model($backgrounds, ['route' => ['cms.backgrounds.update', $backgrounds->id], 'files' => true, 'method' => 'PATCH']) !!} @include('cms.backgrounds._form', ['submitButton' => "Update"]) {!! Form::close() !!}
@endif
@stop