@extends('layouts.default') @section('content') @include('alerts.danger')

Kreiraj novi paket

{!! Form::open(['route' => 'packets.store', 'role' => 'form']) !!}
{!! Form::text('name', old('name'), [ 'class' => 'form-control', 'placeholder' => 'Unesi naziv' ]) !!}
{!! Form::submit('Sacuvaj', [ 'class' => 'btn btn-primary' ]) !!} {!! link_to_route('packets.index', 'Odustani', [], ['class' => 'btn btn-default']) !!}
{!! Form::close() !!} @stop