@extends('template.layout') @section('styles') @endsection @section('content')

Cita

Crear cita

{{ csrf_field() }}
@if ($errors->has('titulo'))
{{ $errors->first('titulo') }}
@endif
@if ($errors->has('detalle'))
{{ $errors->first('detalle') }}
@endif
{!! Form::text('fecha', null, array('class' => 'form-control' , 'required' => 'required')) !!} @if ($errors->has('fecha'))
{{ $errors->first('fecha') }}
@endif
@endsection @section('scripts') @endsection