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

{!! Form::open(['route' => ['workshops.store'], 'method' => 'POST']) !!}
{!! Form::label('name', 'Nombre:') !!} {!! Form::text('name', null, ['class' => 'form-control', 'required']) !!} @if ($errors->has('title')) {{ $errors->first('name') }} @endif
{!! Form::label('thumbnail', 'Imagen Miniatura:') !!} {!! Form::text('thumbnail', null, ['class' => 'form-control', 'required']) !!} @if ($errors->has('title')) {{ $errors->first('thumbnail') }} @endif
{!! Form::label('icon', 'Icono:') !!} {!! Form::text('icon', null, ['class' => 'form-control', 'required']) !!} @if ($errors->has('title')) {{ $errors->first('icon') }} @endif

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