@extends('adminlte::layouts.app') @section('htmlheader_title') {{ trans('Brand Add') }} @endsection @section('contentheader_title') {{ trans('Brand Add') }} @endsection @section('main-content')
@foreach ($errors->all() as $error)

{{ $error }}

@endforeach
{{--

{{ trans('Brand') }} Add

--}} {!! Form::open(array('url' => ('admin/brand/store'),'method'=>'POST', 'files'=>true)) !!}
{!! Form::text('name', null, array('class' => 'form-control','placeholder'=>'Enter name','id'=>'name')) !!}

{!! Form::label('status', 'Status:') !!} {!! Form::radio('status', '1',true,['class' => 'minimal']) !!} Active   {!! Form::radio('status', '0','',['class' => 'minimal']) !!} InActive  
{!! Form::close() !!}
@include('adminlte::layouts.brand.validation') @endsection