@extends('datacom.partiale.index') @section('title', 'Adauga tipuri marfuri') @section('sidebar') @parent @stop @section('css') @endsection @section('content') Adauga tipuri marfuri Home tipuri marfuri Adauga tipuri marfuri Adauga tipuri marfuri @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif {!! Form::open(['url' => '/tipuri-marfuri', 'class' => 'form-horizontal']) !!} {!! Form::label('name', 'Name', ['class' => 'col-sm-3 control-label']) !!} {!! Form::text('name', null, ['class' => 'form-control', 'required' => 'required']) !!} {!! $errors->first('name', ':message') !!} {!! Form::submit('Create', ['class' => 'btn btn-primary form-control']) !!} {!! Form::close() !!} @endsection @section('postfooter') @endsection
:message