@extends('layouts.app') @section('content')
Dashboard - Add Brand
@if (session('status')) @endif
{!! Form::open(['route' => 'brands.store', 'class'=> 'form', 'files'=>'true']) !!} @if(count($errors)>0 )
There were some problems adding the brand.
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif @if (session()->has('message'))
{!! session()->get('message') !!}
@endif
{!! Form::label('Brand Name', 'Brand Name') !!} {!! Form::text('brandname', null, ['class'=> 'form-control', 'placeholder'=> 'Enter Brand Name', 'required']) !!} Enter a brand name
{!! Form::label('Brand Status', 'Publish brand ?') !!} If yes, brand will be displayed on homepage immedeately
{!! Form::label('Brand Description', 'Brand Description') !!} {!! Form::textarea('branddescription', null, ['class'=> 'form-control', 'placeholder'=> 'Enter Brand Description Short- text paragraph here', 'required']) !!} Enter the brand details text here
{!! Form::label('Brand Logo', 'Brand Logo') !!} {!! Form::file('brandlogo', ['class'=>'form-control','required']) !!} Choose a brand logo - Best size : 257px by 252px
{!! Form::label('Products Photo', 'Products Photo') !!} {!! Form::file('productsphoto', ['class'=>'form-control','required']) !!} Choose a products group photo - Best size : 890px by 419px
{!! Form::close() !!}
@endsection