@extends('layouts.app-general') @section('content')

BANNERS

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif

@if(!isset($banner)) Agregar banner @elseif(strstr(Request::url(), "view")) Ver banner @else Editar banner @endif

@if(isset($banner))
@else @endif
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('url')) {{ $errors->first('url') }} @endif
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
@if ($errors->has('image_mobile')) {{ $errors->first('image_mobile') }} @endif
@if ($errors->has('order')) {{ $errors->first('order') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@if ($errors->has('date_init')) {{ $errors->first('date_init') }} @endif
@if ($errors->has('date_finish')) {{ $errors->first('date_finish') }} @endif
Volver atras
@endsection