@extends('layouts.app') @section('content')
Dashboard - Edit Advertisement
@if (session('status')) @endif
@method('PATCH') @csrf @if(count($errors)>0 )
There were some problems adding the ad.
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif @if (session()->has('message'))
{!! session()->get('message') !!}
@endif
{!! Form::label('Ad Name', 'Advertismenet Name') !!} {{-- {!! Form::text('adname', null, ['class'=> 'form-control', 'placeholder'=> 'Enter Advertismenet Name', 'required']) !!}--}} Enter a name for the advertisment
{!! Form::label('Ad Status', 'Choose to hide or show item') !!} Select to either hide or show
{{--
{!! Form::label('Ad Description', 'Advertismenet Description') !!} --}}{{--{!! Form::textarea('addescription', null, ['class'=> 'form-control', 'placeholder'=> 'Enter Advertisment Description', 'required']) !!}--}}{{-- Enter a name for the advertisment
--}}
{{-- {!! Form::close() !!}--}}
@endsection