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