@if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Create New Status


{!! Form::open(['method' => 'POST','accept-charset' => "UTF-8" ,'role' => 'form' , 'enctype' => 'multipart/form-data' , 'data-parsley-validate' , 'id' => 'demo-form2', 'class' => 'form-horizontal form-label-left','route' => 'status.store']) !!}
{!! Form::text('name', null, array('placeholder' => 'Name','class' => 'form-control')) !!}
{!! ($errors->has('name') ? $errors->first('name', '

:message

') : '') !!}
{!! Form::close() !!}