@extends('master.admin') @push('header.scripts') @stop @push('footer.scripts') @stop @section('content')

@if (count($errors) > 0)

Validation Errors!

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Add New Option
{!! Form::open(array('url' => 'admin/yearsparticipation')) !!} {!! csrf_field() !!}
Cancel
{!! Form::close() !!}
@stop