{!! HTML::fontIcon('chevron-left') !!} {{ trans('cups::edit_team') }}

{!! Form::errors($errors) !!} @if (isset($team)) {!! Form::model($team, ['url' => ['cups/teams/'.$team->id], 'files' => true, 'method' => 'PUT']) !!} @else {!! Form::open(['url' => 'cups/teams', 'files' => true]) !!} @endif @section('cups-team-form') {!! Form::smartText('title', trans('app.name')) !!} {!! Form::smartText('password', trans('app.password'), rand(1000,9999)) !!} {!! Form::smartImageFile('image', trans('app.image')) !!} @show {!! Form::actions(['submit'], false) !!} {!! Form::close() !!}