Skip to content

Instantly share code, notes, and snippets.

@Sarav-S
Last active June 2, 2016 21:59
Show Gist options
  • Save Sarav-S/9c77c65fac95fcbd45a91220874fda81 to your computer and use it in GitHub Desktop.
Save Sarav-S/9c77c65fac95fcbd45a91220874fda81 to your computer and use it in GitHub Desktop.
@extends('layouts.app')
@section('content')
<div class="container">
@if(session()->has('status'))
<p class="alert alert-info">
{{ session()->get('status') }}
</p>
@endif
<div class="col-sm-6 col-sm-offset-3">
<div class="panel panel-default">
<div class="panel-heading">
Add User
</div>
<div class="panel-body">
{{ Form::open(['url' => route('users.store'), 'method' => 'POST' ]) }}
@include('users._form')
{{ Form::close() }}
</div>
</div>
</div>
</div>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment