@extends('dashboard::layouts.admin') @section('content')
{!! Form::open([ 'method' => 'post', 'route' => ['admin.delete-profile', $profile->id], ]) !!}
Attention!
Do you really want to delete these profile - {{ $profile->id }} ?
{!! Form::submit('DELETE') !!} CANCEL
{!! Form::close() !!}
@endsection