<div class="container small" ng-non-bindable>
<h1>Delete Role</h1>
- <p>This will delete the role with the name '{{$role->display_name}}'.</p>
+ <p>This will delete the role with the name '{{ $role->display_name }}'.</p>
- <form action="/settings/roles/delete/{{$role->id}}" method="POST">
+ <form action="{{ baseUrl("/settings/roles/delete/{$role->id}") }}" method="POST">
{!! csrf_field() !!}
<input type="hidden" name="_method" value="DELETE">
@endif
<p class="text-neg">Are you sure you want to delete this role?</p>
- <a href="/settings/roles/{{ $role->id }}" class="button">Cancel</a>
+ <a href="{{ baseUrl("/settings/roles/{$role->id}") }}" class="button">Cancel</a>
<button type="submit" class="button neg">Confirm</button>
</form>
</div>