@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
Edit Record
{!! Form::open(array('url' => 'admin/blacklist/update', 'method' => 'patch')) !!} {!! csrf_field() !!}
type)?'block':'none' }}};">
type)?'required':'' }}} />
type)?'block':'none' }}};">
type)?'required':'' }}} />
type)?'required':'' }}} />
Cancel
{!! Form::close() !!}
@stop