@extends('layouts.admin') @section('content')
Proyectos > Nuevo
@if ($errors->any())
Por favor corrige los errores debajo:
@endif
Nuevo Proyecto

{!! Form::open(['route' => ['projects.store'], 'method' => 'POST']) !!}
{!! Form::label('name', 'Nombre:') !!} {!! Form::text('name', null, ['class' => 'form-control', 'required']) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::label('client', 'Cliente:') !!} {!! Form::text('client', null, ['class' => 'form-control', 'required']) !!} @if ($errors->has('client')) {{ $errors->first('client') }} @endif
{!! Form::label('materials', 'Materiales:') !!} {!! Form::text('materials', null, ['class' => 'form-control', 'required']) !!} @if ($errors->has('materials')) {{ $errors->first('materials') }} @endif
{!! Form::label('skills', 'Técnicas:') !!} {!! Form::text('skills', null, ['class' => 'form-control', 'required']) !!} @if ($errors->has('skills')) {{ $errors->first('skills') }} @endif
{!! Form::label('size', 'Dimensiones:') !!} {!! Form::text('size', null, ['class' => 'form-control', 'required']) !!} @if ($errors->has('size')) {{ $errors->first('size') }} @endif
{!! Form::label('thumbnail', 'Imagen Miniatura:') !!} {!! Form::text('thumbnail', null, ['class' => 'form-control', 'required']) !!} @if ($errors->has('thumbnail')) {{ $errors->first('thumbnail') }} @endif

{!! Form::close() !!}
@endsection