@extends('layouts/master') @section('title') Delete User - Technic Solder @stop @section('content')

Delete User ({{ $user->username }} {{ Auth::user()->id == $user->id ? "That's you!" : "" }})

This will immediately remove the user from Solder.
Are you sure you want to remove {{ $user->username }}?

@if(Auth::user()->id == $user->id)

You are about to delete yourself. If you do this, you will no longer be able to access Solder.

@endif
{!! Html::link('user/list/', 'Go Back', ['class' => 'btn btn-primary']) !!}
@endsection