@extends('layouts.app') @section('content')
Dashboard - Edit Iwear
@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', 'Advertisment Name') !!} {{-- {!! Form::text('adname', null, ['class'=> 'form-control', 'placeholder'=> 'Enter Advertismenet Name', 'required']) !!}--}} Enter a name for the Iwear
{!! Form::label('Ad Status', 'Choose to hide or show item') !!} Select to either hide or show
{!! Form::label('Ad Area', 'Choose area - carousel or iwear add') !!} Choose area - carousel or iwear twin add
{!! Form::label('Ad Description', 'Advertisment Description') !!} {{--{!! Form::textarea('addescription', null, ['class'=> 'form-control', 'placeholder'=> 'Enter Advertisment Description', 'required']) !!}--}} Enter a name for the Iwear
{{-- {!! Form::close() !!}--}}
@endsection