@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
Participant Waiver
{!! Form::open(array('url' => 'admin/participantwaiver/update', 'method' => 'patch')) !!} {!! csrf_field() !!}
{!! Form::close() !!}
@stop